// FUNCTION: SHOW NAV LABEL
function showNavLabel(nID,action,navLoc) {
    if (action==1) {
        document.getElementById("navLabel_"+nID).style.top=("88px");
        document.getElementById("navLabel_"+nID).style.left=(""+navLoc+"px");
        document.getElementById("navLabel_"+nID).style.visibility="visible";
    } else {
        document.getElementById("navLabel_"+nID).style.visibility="hidden";
    }
}

// FUNCTION: POPUP
function popup(pURL) {
    var windowFeatures="alwaysLowered=no";
    windowFeatures+=",alwaysRaised=no";
    windowFeatures+=",dependent=yes";
    windowFeatures+=",directories=yes";
    windowFeatures+=",height=540";
    windowFeatures+=",hotkeys=yes";
    windowFeatures+=",location=yes";
    windowFeatures+=",menubar=yes";
    windowFeatures+=",resizable=yes";
    windowFeatures+=",scrollbars=yes";
    windowFeatures+=",status=yes";
    windowFeatures+=",titlebar=yes";
    windowFeatures+=",toolbar=yes";
    windowFeatures+=",width=720";
    windowFeatures+=",z-lock=no";
    popupWindow=window.open(pURL,"popupWindow",windowFeatures);
}

function handleError(message, URI, line) {
	return true;
}
window.onerror = handleError;
