function popup(name){
  newWindow = window.open(name, 'newWindow', 'scrollbars,resizable,height=510,width=510');
}
function popuphelp(name){
  newWindow = window.open(name, 'newWindow', 'scrollbars,resizable,height=480,width=640');
}
function pricing_popup(link) {
 var opts = 'scrollbars,resizable,height=640,width=640,screenX=10,left=10,screenY=10,top=10';
  PP = window.open(link, 'PP', opts);
  PP.focus();
}
function report_popup(link) {
 var opts = 'menubar,toolbar,location,scrollbars,status,resizable,height=600,width=800,screenX=10,left=10,screenY=10,top=10';
  RP = window.open(link, 'RP', opts);
  RP.focus();
}
function launch_gis(layer) {
 var screenW = screen.width - 25;
 var screenH = screen.height - 60;
 var link = "/research/GIS.asp?LAYER=" + layer;
 var opts = 'status,resizable,height=' + screenH + ',width=' + screenW + ',screenX=0,left=0,screenY=0,top=0';
  MAP = window.open(link, 'MAP', opts);
  MAP.focus();
}
function launch_gis1(layer, region) {
 var screenW = screen.width - 25;
 var screenH = screen.height - 60;
 var link = "/research/GIS.asp?LAYER=" + layer + "&REGION=" + region;
 var opts = 'status,resizable,height=' + screenH + ',width=' + screenW + ',screenX=0,left=0,screenY=0,top=0';
  MAP = window.open(link, 'MAP', opts);
  MAP.focus();
}

