function lp_date( )
{
	var months = new Array(12);
	  months[0] = 'Janurary';
	  months[1] = 'Feburary';
	  months[2] = 'March';
	  months[3] = 'April';
	  months[4] = 'May';
	  months[5] = 'June';
	  months[6] = 'July';
	  months[7] = 'August';
	  months[8] = 'September';
	  months[9] = 'October';
	  months[10] = 'November';
	  months[11] = 'December';

	var days = new Array(7);
	  days[0] = 'Sunday';
	  days[1] = 'Monday';
	  days[2] = 'Tuesday';
	  days[3] = 'Wednesday';
	  days[4] = 'Thursday';
	  days[5] = 'Friday';
	  days[6] = 'Saturday';

	var output= '';
	var today = new Date();
	var myMonth = months[today.getMonth()];
	var myDay   = days[today.getDay()];
	var myDate  = today.getDate();
	var myYear  = today.getFullYear();
	
	output = myDay + ", " + myMonth + " " + myDate + ", " + myYear;
	document.write(output);
	return 0;
}

function openEmail( subject, tempAddr )
{
	window.location='mailto:'+tempAddr+'?subject=' +subject;
	return 0;
}

function openWin( tempAddr )
{
	var tempWin = window.open( tempAddr, '', 'width=780,height=600,resizable=yes,status=yes,location=yes,toolbar=yes,scrollbars=yes,menubar=yes');
}

function CreateBookmarkLink()
{
	title = "The Leelanau Post";
	url = "http://www.leelanaupost.com";
	if (window.sidebar) { // Mozilla Firefox Bookmark
		window.sidebar.addPanel(title, url,"");	
	}
	else if( window.external ) { // IE Favorite
		window.external.AddFavorite( url, title);
	}
	else if(window.opera && window.print) { // Opera Hotlist
		return true;
	}
}