function mwhack(){	
	window.onscroll=function(ev){
		ev=window.event?window.event:ev;
		//document.title=window.scrollX;		
		var amt=window.event?document.body.parentNode.scrollLeft:window.scrollX;		
		document.body.style.backgroundPosition='-'+amt+'px 0px';
		var menu=$('belinda_menu');
		if(menu){
			if(!menu.org_posX) menu.org_posX=menu.offsetLeft;
			menu.style.left=(menu.org_posX-amt)+'px';
		}
	}
}

function doContact(frm){
    frm.action=document.location.href;
    return true;
}

function wopen(url){
	vw=Math.round(screen.width/2);
	vh=Math.round(screen.height/2);
	window.open(url,'','titlebar=no,menubar=no,scrollbars=no,status=no,width='+vw+',height='+vh);
}
