function launch(newURL, newName, newFeatures)
{
	var remote = open(newURL, newName, newFeatures);
	return remote;
}

function popuplaunch(theURL,theNAME,theWIDTH,theHEIGHT,theTYPE) {
if (theTYPE=='flexi')
	{
	Remote = launch(theURL, theNAME, "height="+theHEIGHT+",width="+theWIDTH+",channelmode=0,dependent=0,directories=0,fullscreen=0,location=0,menubar=0,resizable=yes,scrollbars=yes,status=0,toolbar=0,title=0");
	}
else
	{
	Remote = launch(theURL, theNAME, "height="+theHEIGHT+",width="+theWIDTH+",channelmode=0,dependent=0,directories=0,fullscreen=0,location=0,menubar=0,resizable=0,scrollbars=0,status=0,toolbar=0,title=0");
	}
}

function copywriteyear()
{
	var theDate=new Date()
	var todaysyear=theDate.getFullYear();
	document.getElementById('copywriteyear').innerHTML = '2008 - '+todaysyear;
}