
var cX = 0; var cY = 0; var rX = 0; var rY = 0;

timer2=setTimeout("",1);


function hidepop(d) {
    document.getElementById(d).style.visibility = "hidden";
}
function HideContent(d)
{
	timer2=eval("setTimeout('hidepop(\""+d+"\")',500)");
}

function ShowContent(d) {
    //var cX=document.body.offsetWidth - document.body.offsetWidth/2;
    //var cY=document.body.offsetHeight;

   	window.clearTimeout(timer2);
	hideallpop();
    var dd = document.getElementById(d);

    //if(document.all) {
	//    cX += 20;
    //}

    //dd.style.left = (cX-6) + "px";
    //dd.style.top = (cY-100) + "px";

    dd.style.visibility = "visible";

}

function ShowPopup(d) {
   	window.clearTimeout(timer2);
    document.getElementById(d).style.visibility = "visible";
}

function hideallpop() {
    document.getElementById('aimil').style.visibility = "hidden";
    document.getElementById('sushi').style.visibility = "hidden";
    document.getElementById('cranes').style.visibility = "hidden";
    document.getElementById('sai').style.visibility = "hidden";
    document.getElementById('open').style.visibility = "hidden";
    document.getElementById('integra').style.visibility = "hidden";
    document.getElementById('arvato').style.visibility = "hidden";
}
