function newwin(url){
    var map=window.open(url,"otherwindow","toolbar=yes,scrollbars=yes,resizable=yes,menubar=yes,location=yes,status=yes");
    map.window.focus(); }
function newwin_blank(url){
    var map=window.open(url,"_blank","toolbar=yes,scrollbars=yes,resizable=yes,menubar=yes,location=yes,status=yes");
    map.window.focus(); }
