function popupFixed(url) {
  var vars = "left=0,top=0,screenX=0,screenY=0,height=";
  vars += 480;
  vars += ",width=";
  vars += 680;
  vars += ",menubar=0,scrollbars=1,titlebar=1,directories=0,fullscreen=0,status=0,toolbar=0,location=0,resizable=1";
  var Win = window.open(url,"popup",vars);
}

function popupFixedSmall(url) {
  var vars = "left=0,top=0,screenX=0,screenY=0,height=";
  vars += 89;
  vars += ",width=";
  vars += 62;
  vars += ",menubar=0,scrollbars=0,titlebar=0,directories=0,fullscreen=0,status=0,toolbar=0,left=650,top=700,location=0,resizable=0";
  var Win = window.open(url,"popup",vars);
}


function popupOptimum(url) {
  var popmsg;
  popmsg = confirm('By clicking "OK" you agree with our License Agreement'  + '\n' + '\n' + 'IMPORTANT NOTE: Please call 309-828-4331 x 27 to set up free training for the new map viewers.'  + '\n' + '\n' +  'This site uses popups.  If you have a popup blocker, please deactivate before accessing this site.  Click OK to continue or Cancel so you can turn off your popup blocker.');
  if (popmsg) {
	  var vars = "left=0,top=0,screenX=0,screenY=0,height=";
	  vars += (screen.availHeight - 50);
	  vars += ",width=";
	  vars += (screen.availWidth - 10);
	  vars += ",directories=0,fullscreen=0,status=1,toolbar=0,location=0,resizable=1";
	  var Win = window.open(url,"popup",vars);
 }
}

function popup(url) {
  var popmsg;
  popmsg = confirm('By clicking "OK" you agree with our License Agreement'  + '\n' + '\n' + 'IMPORTANT NOTE: Please call 309-828-4331 x 27 to set up free training for the new map viewers.'  + '\n' + '\n' +  'This site uses popups.  If you have a popup blocker, please deactivate before accessing this site.  Click OK to continue or Cancel so you can turn off your popup blocker.');
  if (popmsg) {
	  var vars = "left=0,top=0,screenX=0,screenY=0,height=";
	  vars += (screen.availHeight - 50);
	  vars += ",width=";
	  vars += (screen.availWidth - 10);
	  vars += ",directories=0,fullscreen=0,status=1,toolbar=0,location=0,resizable=1,scrollbars=1";
	  var Win = window.open(url,"popup",vars);
 }
}
