function openSite(strURL)
{
	var siteWindow;
	
	siteWindow = window.open(strURL);
} // openSite

function openPopUp(strURL, intWidth, intHeight)
{
	var popUpWindow;
	
	popUpWindow = window.open(strURL, "popUpWindow", "width=" + intWidth + ", height=" + intHeight);
	popUpWindow.focus();
} // openPopUp


function openCopyright(strURL, intWidth, intHeight)
{
	var copyWindow;
	
	copyWindow = window.open(strURL, "copyWindow", "width=" + intWidth + ", height=" + intHeight);
	copyWindow.focus();
} // openPopUp