/************************************************/
/*  JS for CPL web site                         */
/*  © Sci-Tech Consulting                       */
/************************************************/

//=============================================================================================================================
// Function opens a new window called newName to newURL, with size newWidth x newHeight
//-----------------------------------------------------------------------------------------------------------------------------
function NewWindow(newName, newURL, newWidth, newHeight) {
	theNewWindow = window.open(newURL,newName,"width="+newWidth+",height="+newHeight+",resizable=no,menubar=no,toolbar=no,location=no,directories=no,status=0,scrollbars=yes");
	theNewWindow.moveTo(5,5);
	theNewWindow.focus();
}
//=============================================================================================================================


//=============================================================================================================================
// This function causes the current window to jump to the URL newPage
//-----------------------------------------------------------------------------------------------------------------------------
function gotoPage(newPage) {
	if (newPage != "")
		window.location.href = newPage;
}
//=============================================================================================================================

