function getScreenAvailWIDTH(){	if(!!window.screen){		return screen.availWidth	}else{		return null	}}function getScreenAvailHEIGHT(){	if(!!window.screen){		return screen.availHeight	}else{		return null	}}//Half Of ScreenSizevar scW = getScreenAvailWIDTH()/2;	var scH = getScreenAvailHEIGHT()/2;//WindowRocation(Default)var wrX = scW-400;					var wrY = scH-300;//WindowRocation(HTML)var wrX_html = scW-400;					var wrY_html = scH-300;//Open MainWindowfunction openmain() {	if (scW > 450){		if (parent.name != "solumediage") {			if(scW != null){				window.resizeTo(850,620);			}			window.moveTo(wrX,wrY);			window.open("top.html","",'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,left='+wrX+',top='+wrY+',resizable=0,width='+850+',height='+620+'');		}	}else{		if (parent.name != "solumediage") {			if(scW != null){				window.resizeTo(850,620);			}			window.moveTo(wrX_html,wrY_html);			window.open("top","",'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,left='+wrX_html+',top='+wrY_html+',resizable=0,width='+850+',height='+620			+'');		}	}	}
