var Mtop = 0;
var Mleft = 0;

function mymouse(){
Mtop = event.clientY;
Mleft = event.clientX;
if(1==2 && typeof(xHASH) != "undefined" && xHASH != null && xHASH != window.location.hash){
	
}
//window.status = window.location.pathname;
//if(1==2 && window.location.pathname != ThisPath + '/index.php' && window.location.pathname != ThisPath + '/')window.status = Mtop + ' x ' + Mleft;//window.location.pathname + ': ' + 
}


function mykey(){
//alert(event.keyCode);
if(event.altKey && event.keyCode == 81)
	alert(document.cookie);

if(event.altKey && event.keyCode == 83 && window.location.pathname.indexOf('.')==-1){
	//var splitpathname = window.location.pathname.split("/");
}
}

function positionmenu(){
if(elem('MenuArticle'))
	elem('MenuArticle').style.left = -500;
}


document.onmousemove = mymouse;
document.onkeydown = mykey;
document.onclick = positionmenu;


