function fnPopUpWindow(URL, w, h, Scrolling){

	var x = screen.width / 2 - (w / 2);
	var y = screen.height / 2 - (h / 2);
	
	window.open(URL,"PopUp","scrollbars=" + Scrolling + ",resizable=no,copyhistory=no,status=no,menubar=no,toolbar=no,location=no,directories=no,width=" + w + ",height=" + h + ",left=" + x + ",top=" + y)

}

function fnAcademyDisplay(whichObj){

	document.getElementById("DefaultBox").style.display = "none"
	document.getElementById("LoginBox").style.display = "none"
	document.getElementById("RegisterBox").style.display = "none"
	
	document.getElementById(whichObj).style.display = "block"

}

function fnTC(){

	var w = 760;
	var h = 420;
	var x = screen.width / 2 - (w / 2);
	var y = screen.height / 2 - (h / 2);
	
	window.open("/Terms.htm","TC","scrollbars=yes,resizable=no,copyhistory=no,status=no,menubar=no,toolbar=no,location=no,directories=no,width=" + w + ",height=" + h + ",left=" + x + ",top=" + y)

}

function fnPP(){

	var w = 760;
	var h = 420;
	var x = screen.width / 2 - (w / 2);
	var y = screen.height / 2 - (h / 2);
	
	window.open("/Privacy.htm","PP","scrollbars=yes,resizable=no,copyhistory=no,status=no,menubar=no,toolbar=no,location=no,directories=no,width=" + w + ",height=" + h + ",left=" + x + ",top=" + y)

}
