<!--
function go(where){
    //alert("You clicked on "  + where);
    if (where != "undefined") document.location = where;
}
function moveZIndex(whichID, level){
    if (whichID != "undefined"){
        var obj = document.getElementById(whichID);
        if (obj != "undefined") obj.style.zIndex = level;
        //alert(obj.style.zIndex);
    }
}
function doAlert(msg){
    alert(msg);
}

// -->