document.oncontextmenu = function() { return false;}
//document.onselectstart=new Function("event.returnValue=false;");
//document.onselectstart=new Function("event.returnValue=false;");


function disableselect(e){
  //alert(e);
return false
}

function reEnable(){
return true
}

//if IE4+
document.onselectstart=function(){ 
    //alert("IE");
    return   event.srcElement.tagName=="INPUT";
    //event.returnValue=false;
};


//if NS6
if (window.sidebar){
document.onmousedown=disableselect
document.onclick=reEnable
}

function openwin(url) {
	window.open(url,'','width=980,height=580,scrollbars=no,resizable=yes,status=no');
}

function openwin_map(url) {
	window.open(url,'','width=980,height=600,scrollbars=yes,resizable=yes,status=no');
}
