newWindow = null;
function verify() {
  if ((!document.ypwform.whichpages[0].checked) && (!document.ypwform.whichpages[1].checked)) {
          alert("You must choose a Residential or Business search.");
          document.ypwform.whichpages[0].focus();
          }
  else
  {
    if ((document.ypwform.last_bus.value == "")||(document.ypwform.last_bus.value == " ")) {
            alert("You must enter a Last Name or Business Name.");
	          document.ypwform.last_bus.focus();
  	        }
  	else
  	{
  			whichAction();

  	}
  }
  /*if ((document.ypwform.S.options[document.ypwform.S.selectedIndex].value == "*")&&(document.ypwform.whichpages[1].checked)){
   *       go="no";
   *       alert("You must choose a State to run a Business search.");
   *       document.ypwform.S.focus();
   *     }
   */
}

function whichAction(){
	urlString = null;
	if (document.ypwform.whichpages[0].checked)
  {
		urlString = "http://wp.superpages.com/wp/results.phtml?SRC=vyp&WF=" + (document.ypwform.first.value == null ? "" : document.ypwform.first.value) +
    						"&WL=" + (document.ypwform.last_bus.value == null ? "" : document.ypwform.last_bus.value) +
    						"&STYPE=WS" +
    						"&T=" + (document.ypwform.T.value == null ? "" : document.ypwform.T.value) +
    						"&S=" + (document.ypwform.S.options[document.ypwform.S.selectedIndex].value == null ? "" : document.ypwform.S.options[document.ypwform.S.selectedIndex].value) +
    						"&PS=15";
  }
	else
  {
  	urlString = "http://yp.superpages.com/listings.phtml?SRC=vyp&WL=" + (document.ypwform.last_bus.value == null ? "" : document.ypwform.last_bus.value) +
    						"&N=" + (document.ypwform.last_bus.value == null ? "" : document.ypwform.last_bus.value) +
    						"&STYPE=S" +
    						"&T=" + (document.ypwform.T.value == null ? "" : document.ypwform.T.value) +
    						"&S=" + (document.ypwform.S.options[document.ypwform.S.selectedIndex].value == null ? "" : document.ypwform.S.options[document.ypwform.S.selectedIndex].value) +
    						"&PG=L" +
    						"&R=N" +
    						"&PS=15";

  }
  urlStringl = "/leaving.jsp?dest=";
  urlString2 = urlStringl +  urlString;
  newWindow = window.open(urlString2,'superpages','location,toolbar,status,scrollbars,menubar,resizable,width=675,height=420,left=25,screenX=25,top=25,screenY=25');
}
