timeoutbool=false;
  function MM_openBrWindow(theURL,winName,features) { //v2.0

  window.open(theURL,winName,features);

}


function absLeft(el) {
 return (el.offsetParent)? el.offsetLeft+absLeft(el.offsetParent) : el.offsetLeft;
}

function absTop(el) {
 return (el.offsetParent)? el.offsetTop+absTop(el.offsetParent) : el.offsetTop;
}
function timer(id,bool){
	if(bool==true){
		timeoutbool=true; setTimeout("if(timeoutbool==true) document.getElementById('submenu"+id+"').style.display='none'",3000);
	}else
		document.getElementById('submenu'+id).style.display='none';


}

 