// This is used to control the Magic-Y menu
// Toggle Layer style for left property
function togLyr (el, status) { 
    var yale = (status == 1) ? "0" : "-999em";
    document.getElementById(el).style.left = yale;
}

// Open link in new sized window
// Example link for popFixed
/* <a href="http://www.yale.edu/" target="new" onclick="popFixed('');">Fixed Size Focused Page</a> */

function popFixed(file) {
        popup =
window.open(file,'new','width=800,height=600,menubar=no,toolbar=no,location=no,status=no,resizable=yes,scrollbars=no,screenX=30,screenY=30');
        if (document.images) {popup.focus();}
}

