/*** Author Michael Kinkaid - Inorbital ***/


function openSitePopUp(pageURL){	
	if(pageURL != "null"){
		var windowWidth = 520;
		var windowHeight = 550;
		var theTop=(screen.height/2)-(windowHeight/2);
		var theLeft=(screen.width/2)-(windowWidth/2);
		var features="height=" + windowHeight + ",width=" + windowWidth + ",top="+theTop+",left="+theLeft+",status=yes,toolbar=no,menubar=no,location=no";
		window.open(pageURL,"_blank",features);
	}
}