var specsheetwin=null;
onerror = null

//###############################################
function openMap(gotoURL,myname)
//###############################################

{
 //** change these 3 values
 h=340
 w=478
 toolbarheight=0

// LeftPosition=(screen.width)?(screen.width - w)/2:100;
// TopPosition=(screen.height)?(screen.height - h - toolbarheight)/2:100;

 LeftPosition=1;
 TopPosition=1;

 //** change window settings
 settings='width='+ w + ',height='+ h + ',top=' + TopPosition + ',left=' + LeftPosition +   ',location=no,directories=no,menubar=no,toolbar=no,status=no,scrollbars=no,resizable=no,dependent=no';
 specsheetwin=window.open('',myname,settings);

 specsheetwin.focus();
 specsheetwin.location=gotoURL;
}


//end function 
//^^^^^^^^^^^^
