<!--
function bookmarksite(title,url){
	if (window.sidebar) // firefox
	  alert("You need to press CTRL + D to bookmark the site.");
		// window.sidebar.addPanel(title, url, "");
	else if(window.opera && window.print){ // opera
		var elem = document.createElement('a');
		elem.setAttribute('href',url);
		elem.setAttribute('title',title);
		elem.setAttribute('rel','sidebar');
		elem.click();
	} 
	else if(document.all)// ie
		window.external.AddFavorite(url, title);
}

function zoom(rate){
  var t=document.getElementById('GameDiv').style;
  var w=Math.floor(parseInt(t.width)*rate);
  var h=Math.floor(parseInt(t.height)*rate);
  t.width=w+"px";
  t.height=h+"px";
}
function zoomtheframe(rate)
{
	var t=document.getElementById('TheGameframe');
    t.height = t.height*rate;
    t.width =  t.width*rate;
	t.refresh;
}
function reportbroken( id ) {
	new Ajax.Updater( 'reportbroken', '/reportbroken.php?id='+ id );
	document.getElementById('reportbroken').innerHTML="<img src='/images/loading.gif' align='absmiddle'>submiting, please wait";
}

if (top.location!=self.location)
top.location.href=self.location.href;

-->