var w = 0;
var h = 0;
var url = "";

function open_window(url,w,h)
{
   if (url == "rocket_popup") { alert('asdfdsaf'); return false; }
   else {
      var options = "width=" + w + ",height=" + h + ",";
      options += "resizable=no,scrollbars=no,status=no,";
      options += "menubar=no,toolbar=no,location=no,directories=no";
      var newWin = window.open(url, 'newWin', options);
      newWin.focus();
   }
}
/*
function greensboro_location()
{
   var p=window.createPopup()
   var pbody=p.document.body
   var iframe_html = "<iframe width=\"640\" height=\"480\" frameborder=\"0\" scrolling=\"no\"";
       iframe_html += "marginheight=\"0\" marginwidth=\"0\" src=\"http\:\/\/maps.google.com\/";
	   iframe_html += "maps\?f=q&amp\;hl=en&amp\;geocode=&amp;q=2403-4+Battleground+Ave.\,\+Greensboro\,";
       iframe_html += "\+NC\+27408\&amp\;sll=37.0625\,-95.677068\&amp;sspn=49.844639,78.75&amp;ie=UTF8\&amp;s=";
       iframe_html += "AARTsJoq7b1sKEnPoD8tFxTyK9Lhwm7e7w&amp\;ll=36.112917,-79.819708\&amp\;spn=";
	   iframe_html += "0\.033283\,0.054932\&amp\;z=14\&amp\;iwloc=addr\&amp\;output=embed\"><\/iframe><br \/>";
	   iframe_html += "<small><a href=\"http\:\/\/maps.google.com\/maps\?f=q\&amp\;hl=en\&amp\;geocode=\&amp\;q=";
	   iframe_html += "2403-4\+Battleground\+Ave.,\+Greensboro,\+NC+27408\&amp\;sll=37.0625,-95.677068\&amp\;sspn=";
	   iframe_html += "49.844639,78.75\&amp\;ie=UTF8\&amp\;ll=36.112917,-79.819708\&amp\;spn=0.033283,0.054932\&amp\;z=";
	   iframe_html += "14\&amp\;iwloc=addr\&amp\;source=embed\" style=\"color\:\#0000FF\;text-align\:left\">";
	   iframe_html += "View Larger Map<\/a><\/small>";
   
   pbody.style.backgroundColor="lime";
   pbody.style.border="solid black 1px";
   pbody.innerHTML = iframe_html;
   p.show(150,150,640,480,document.body);

}
*/