var completeMenu = "";var popupId = 1;
var globalBg,globalHl,globalLeft,globalTop,globalLayerId,globalWidth;


var newId = Math.round(Math.random()*90000);

function dummy(){}

function addLinkMenu(linkText,left,top){

document.write("<a href='#' onMouseOver='showLinkMenu(\"sp"+newId+"\")' onMouseOut='hideLinkMenu(\"sp"+newId+"\")'><span id='sp"+newId+"'>"+linkText+"</span></a>");
globalLeft = left;
globalTop = top;

}

function startMenu(id,hl,bg,wd){
document.write("<div id='"+id+"' style='position:absolute;left:0px;top:0px;width:"+wd+";visibility:hidden;font-family:Verdana, Arial, Helvetica, sans-serif;font-size:10px;color:#000000;background-color:"+bg+";z-Index:+50000;' onMouseOver='showLinkMenu(\"sp"+newId+"\")' onMouseOut='hideLinkMenu(\"sp"+newId+"\")'></div>");
globalBg = bg;
globalHl = hl;
globalWidth = wd;
globalLayerId = id;
}
function endMenu(id){document.getElementById(id).innerHTML = completeMenu;}

function menuHilight(id){document.getElementById(id).style.backgroundColor = globalHl;}
function menuNormal(id){document.getElementById(id).style.backgroundColor = globalBg;}
function showLinkMenu(id){
document.getElementById(globalLayerId).style.visibility = "visible";
document.getElementById(globalLayerId).style.left = getPageOffsetLeft(document.getElementById(id))+globalLeft+"px";
document.getElementById(globalLayerId).style.top = getPageOffsetTop(document.getElementById(id))+globalTop+"px";
}

function hideLinkMenu(id){
document.getElementById(globalLayerId).style.visibility = "hidden";
}


function addMenu(text,link,type){
if(type == "link"){
completeMenu = completeMenu + "<div class='popupmenu_normal' style='padding-top:8px;padding-bottom:8px;width:"+globalWidth+"px;' id='popup"+popupId+"' onMouseOver='menuHilight(\"popup"+popupId+"\")' onMouseOut='menuNormal(\"popup"+popupId+"\")'><a href='"+link+"' class='popupmenu_normal' style='text-decoration:none;font-family:Verdana, Arial, Helvetica, sans-serif;font-size:10px;color:#000000;'>"+text+"</a></div>";
}
else if(type == "heading"){
completeMenu = completeMenu + "<div class='popupmenu' style='width:"+globalWidth+"px;margin-top:10px;margin-bottom:10px;' id='heading"+popupId+"'>"+text+"</div>";
}
else if(type == "break"){completeMenu = completeMenu + "<div style='height:5px;width:"+globalWidth+"px;'>&nbsp;</div>";}
popupId++;
}//function addMenu

function getPageOffsetLeft(){return arguments[0].offsetLeft + (arguments[0].offsetParent ? getPageOffsetLeft(arguments[0].offsetParent) : 0);}function getPageOffsetTop(){return arguments[0].offsetTop + (arguments[0].offsetParent ? getPageOffsetTop(arguments[0].offsetParent) : 0);}

