 <!--The script for the Date/Time display is adapted by Alden -->

	<!-- Begin
	var day="";
	var month="";
	var ampm="";
	var ampmhour="";
	var myweekday="";
	var year="";
	mydate = new Date();
	myday = mydate.getDay();
	mymonth = mydate.getMonth();
	myweekday= mydate.getDate();
	weekday= myweekday;
	myyear= mydate.getYear();
	myhours = mydate.getHours();
	ampmhour = (myhours > 12) ? myhours - 12 : myhours;
	ampm = (myhours >= 12) ? 'PM' : 'AM';
	mytime = mydate.getMinutes();
	myminutes = ((mytime < 10) ? ':0' : ':') + mytime;
	year = (myyear > 100) ? myyear : 1900 + myyear;
	if(myday ==0)
		day = " Sunday, ";
	else if(myday == 1)
		day = " Monday, ";
	else if(myday == 2)
		day = " Tuesday, ";
	else if(myday == 3)
		day = " Wednesday, ";
	else if(myday == 4)
		day = " Thursday, ";
	else if(myday == 5)
		day = " Friday, ";
	else if(myday == 6)
		day = " Saturday, ";
	if(mymonth == 0) {
		month = "Jan - ";}
	else if(mymonth ==1)
		month = "Feb - ";
	else if(mymonth ==2)
		month = "Mar - ";
	else if(mymonth ==3)
		month = "Apr - ";
	else if(mymonth ==4)
		month = "May - ";
	else if(mymonth ==5)
		month = "Jun - ";
	else if(mymonth ==6)
		month = "Jul - ";
	else if(mymonth ==7)
		month = "Aug - ";
	else if(mymonth ==8)
		month = "Sept - ";
	else if(mymonth ==9)
		month = "Oct - ";
	else if(mymonth ==10)
		month = "Nov - ";
	else if(mymonth ==11)
		month = "Dec - ";
	// End -->


// js file for new windows

// Assign Netscape Ref Variable
var NS = (navigator.appName=='Netscape');

function newWin(strWindow, strPath)
{
	if (strWindow == 'purchase')
	{ 
		//window.alert("Not Implemented Yet!");
		if (NS)
		{ window.open("purchase.html","purchase","height=460,width=640,left=0,top=0,screenX=0,screenY=0"); }
		else
		{ window.open("purchase.html","purchase","height=435,width=500,left=0,top=0,screenX=0,screenY=0"); }
	}
	else if (strWindow == 'payment')
	{ 
		//window.alert("Not Implemented Yet!");
		if (NS)
		{ window.open("payment.html","payment","height=460,width=640,left=0,top=0,screenX=0,screenY=0"); }
		else
		{ window.open("payment.html","payment","height=435,width=500,left=0,top=0,screenX=0,screenY=0"); }		 
	}
	else if (strWindow == 'help')
	{ 
		var strSettings;
		
		if (strPath == "")
		{ strPath = "../help.htm" }
		
		if (screen.width == 640)
		{ strSettings = "height=480,width=580,scrollbars=yes,left=0,top=0,screenX=0,screenY=0"; }
		else
		{ strSettings = "height=480,width=580,scrollbars=yes,left=459,top=0,screenX=459,screenY=0"; }
		
		window.open(strPath,"help",strSettings);
	}
	else
	{ self.close(); }
}


//Popup Window Script for the maps

function openpopup(linkpage){
	var popurl= linkpage;
	winpops=window.open(popurl,"","width=530,height=580,")
}
