// JavaScript Document
var popupTimer;

function showPopup(callerRef,popupID){
	hidePopups();
	stopTimer();
	popupRef=document.getElementById(popupID);
	popupRef.style.visibility="visible";
	popupRef.style.left=(callerRef.offsetLeft+callerRef.offsetWidth-35)+"px";
	popupRef.style.top=(callerRef.offsetTop-5)+"px";
}

function hidePopups(){
	document.getElementById("menu-popup-products").style.visibility="hidden";
	document.getElementById("menu-popup-corner").style.visibility="hidden";
	document.getElementById("menu-popup-network").style.visibility="hidden";
	document.getElementById("menu-popup-store").style.visibility="hidden";
}

function startTimer(){
	stopTimer();
	popupTimer=setTimeout("hidePopups()",300);
}

function stopTimer(){
	clearTimeout(popupTimer);
}