// JavaScript Document
<!--
function launchMediaCentre(){
	window.open('mediacentre.php','MSMediaCentre', 'width=660, height=400');
}

function viewImage(imgSrc, imgW, imgH, imgTitle){
	var screenW = screen.width;
}

function openQuiz(quiz_id, user_id){
	var wWidth;
	var wHeight;
	wWidth = (window.screen.width/2) - (75 + 10);
	wHeight = (window.screen.height/2) - (100 + 50);
	var newWin = window.open('fiqhuizWin.php?quiz_id='+quiz_id+'&user_id='+user_id,'Fiqhuiz', 'width=650, height=480, left='+wWidth+', top='+wHeight+",screenX=" + wWidth + ",screenY=" + wHeight + ",toolbar=no,menubar=no,scrollbars=no,location=no,directories=no");
	newWin.focus()
}

function goAd(adID){
	var head= document.getElementsByTagName('head')[0];
	var s= document.createElement('script');
	s.type= 'text/javascript';
	s.src= '../global/js/sponsor-js.php?ID='+adID;
	head.appendChild(s);
}

function showHide(theDiv){
	theDiv = document.getElementById(theDiv);
	if(theDiv.style.display=='none'){ theDiv.style.display='block'; }
	else{ theDiv.style.display='none'; }
}
-->
