<!-- 
var winW = 630, winH = 460;
	function size(){
		if (parseInt(navigator.appVersion)>3) {
		 if (navigator.appName=="Netscape") {
		  winW = window.innerWidth;
		  winH = window.innerHeight;
		 }
		 if (navigator.appName.indexOf("Microsoft")!=-1) {
		  winW = document.body.offsetWidth;
		  winH = document.body.offsetHeight-10;
		 }
		 
		}
	}
	
	function getWinWidth(){
		if(winW > 0)
			return winW;
		else
			return 0;
	}
	function getWinHeight(){
		if(winH > 0)
			return winH;	
		else
			return 0;
	}
  	function getWinDividedWidth(){
  		if((winW - 800)/2)
  			return (winW - 800)/2;
  		else
  			return 0;
  	}
  	function getWinDividedHeight(){
  		if((winH - 560)/2)
	  		return (winH - 560)/2;
	  	else
	  		return 0;
  	}
  	
  	function start(){
  		size();
  		document.getElementById('topId').width = getWinWidth();
  		document.getElementById('topId').height = getWinDividedHeight();
  		document.getElementById('downId').width = getWinWidth();
  		document.getElementById('downId').height = getWinDividedHeight();
  		document.getElementById('leftId').width = getWinDividedWidth();
  		document.getElementById('leftId').height = 560;
  		document.getElementById('rightId').width = getWinDividedWidth();
  		document.getElementById('rightId').height = 560;
  	}
	
  	function showmenu(element){
  		document.getElementById(element).style.visibility = 'visible'
  	}
  	function hidemenu(element){
  		document.getElementById(element).style.visibility = 'hidden'
  	}
  	
  	function MenuON(element){
  		document.getElementById(element).src = '/moheb/images/rightMenuOn.gif';
  	}
  	function MenuOFF(element){
  		document.getElementById(element).src = '/moheb/images/rightMenuOff.gif';
  	}
  	
  	
  	var soundfile="/moheb/sounds/start.wav" //path to sound file, or pass in filename directly into playsound()
	
	function playsound(soundfile){
		if (document.all && document.getElementById){
			document.getElementById("soundeffect").src="" //reset first in case of problems
			document.getElementById("soundeffect").src=soundfile
		}
	}
	
	function bindsound(tag, soundfile, masterElement){
		if (!window.event) return
		var source=event.srcElement
		while (source!=masterElement && source.tagName!="HTML"){
			if (source.tagName==tag.toUpperCase()){
				playsound(soundfile)
				break
			}
			source=source.parentElement
		}
	}
	
	
	// --> 