<!--
	function pop(id) {
		cX = Math.floor((screen.availWidth-400)/2); 
		cY = Math.floor((screen.availHeight-500)/2);
		if(id == 1){
			myWin = window.open('pla.php','','toolbar=no, location=no, status=no, menubar=no, scrollbars=yes, resizable=mo, width=400, height=500, left='+cX+',top='+cY);
		} else if (id == 2){
			myWin = window.open('pp.php','','toolbar=no, location=no, status=no, menubar=no, scrollbars=yes, resizable=mo, width=400, height=500, left='+cX+',top='+cY);
		} else if (id == 3){
			myWin = window.open('ln.php','','toolbar=no, location=no, status=no, menubar=no, scrollbars=yes, resizable=mo, width=400, height=500, left='+cX+',top='+cY);
		}
		myWin.focus();
	}
	function popUsr(id,w,h) {
		cX = Math.floor((screen.availWidth-w)/2); 
		cY = Math.floor((screen.availHeight-h)/2);
		myWin = window.open('user.php?id='+id,'','toolbar=no, location=no, status=no, menubar=no, scrollbars=yes, resizable=mo, width='+w+', height='+h+', left='+cX+',top='+cY);
		myWin.focus();
	}
	function popAmb(id,w,h) {
		cX = Math.floor((screen.availWidth-w)/2); 
		cY = Math.floor((screen.availHeight-h)/2);
		myWin = window.open('amb.php?id='+id,'','toolbar=no, location=no, status=no, menubar=no, scrollbars=yes, resizable=mo, width='+w+', height='+h+', left='+cX+',top='+cY);
		myWin.focus();
	}
	function startDemo() {
		cX = Math.floor((screen.availWidth-800)/2); 
		cY = Math.floor((screen.availHeight-600)/2);
		myWin = window.open('demo.html','','toolbar=no, location=no, status=no, menubar=no, scrollbars=no, resizable=mo, width=800, height=600, left='+cX+',top='+cY);
		myWin.focus();
	}
	function startFlash() {
		cX = Math.floor((screen.availWidth-798)/2); 
		cY = Math.floor((screen.availHeight-288)/2);
		myWin = window.open('flash.html','','toolbar=no, location=no, status=no, menubar=no, scrollbars=no, resizable=mo, width=798, height=288, left='+cX+',top='+cY);
		myWin.focus();
	}
	function mailProtect(username,the_domain, msg) {
		document.write("<a class=\"rood\" href ='mailto:" +username  +"@" +the_domain +"'>" +msg +"</a>" + "\n");
	}
//-->