var dmWorkPath="head-menu.files/"

function new_window(url) {
var h=screen.availHeight/2-305;
var w=screen.availWidth/2-225;
attrStr = 'toolbar=no,location=no,directories=0,status=0,menubar=no,scrollbars=yes,resizable=yes,width=450,height=610,left=' + w + ',top=' + h + "'"
link = window.open(url,"Link",attrStr);
}

function maps_window(url) {
var h=screen.availHeight/2-230;
var w=screen.availWidth/2-325;
attrStr = 'toolbar=no,location=no,directories=0,status=0,menubar=no,scrollbars=yes,resizable=yes,width=650,height=460,left=' + w + ',top=' + h + "'"
link = window.open(url,"Link",attrStr);
}

document.oncontextmenu = function(){return false}
if(document.layers) {
    window.captureEvents(Event.MOUSEDOWN);
    window.onmousedown = function(e){
        if(e.target==document)return false;
    }
}
else {
    document.onmousedown = function(){return false}
}


