//popup window
function openWindow(windowURL,windowName,windowWidth,windowHeight,scroll,center) {
	newWindow = window.open(windowURL,windowName,'width='+windowWidth+',height='+windowHeight+',toolbar=0,location=0,directories=0,status=0,menuBar=0,scrollbars='+scroll+',resizable=0');
	newWindow.focus(); 
   if (center) {
      newWindow.moveTo((screen.width-windowWidth)/2,(screen.height-windowHeight)/2)
   }
}
var path;

function popRules(fb) {

		if(fb === undefined)
			path = "";
		else
			path = "../";
	
   openWindow(path+"rules.php","rules",700,500,1,1);
}
function popCopyright(fb) {

		if(fb === undefined)
			path = "";
		else
			path = "../";
   openWindow(path+"rules.php#privacy","rules",760,500,1,1);
}
function terms(fb) {

		if(fb === undefined)
			path = "";
		else
			path = "../";
   openWindow(path+"terms.php","terms",700,500,1,1);
}
function popPrivacy(fb) {

		if(fb === undefined)
			path = "";
		else
			path = "../";
			
   openWindow(path+"privacy.php","rules",760,500,1,1);
}