/*load backgroundimage*/
function initbackground(whichImage){

	if (whichImage == undefined) { whichImage=''; }

	if (document.body){
	
		url = "/development/imagehandler.php?width=" + pageWidth() + "&image=" + whichImage;
		
		document.body.background = url;
		
	}
}

///define pagewidth & height for determining size backgroundimage
function pageWidth() {return window.innerWidth != null? window.innerWidth: document.documentElement && document.documentElement.clientWidth ? document.documentElement.clientWidth:document.body != null? document.body.clientWidth:null;}
function pageHeight() {return window.innerHeight != null? window.innerHeight: document.documentElement && document.documentElement.clientHeight ? document.documentElement.clientHeight:document.body != null? document.body.clientHeight:null;}


window.name = 'noorimages';

function openNoorZones()
{
 window.open('index.php?id=714','noorzonesWindowName','left=20,top=20,width=950,height=510,toolbar=0,resizable=1,status=0');
 
}

