// BEGIN Standard popup window script BEGIN //
   window.name="opener";

   function popUpSearchSpy(url) {
      var detWindow=""
      detWindow=window.open(url,'searchspy','menubar=no,toolbar=no,location=no,directories=no,status=no,scrollbars=no,resizable=no,width=599,height=297');
   }
 function popPrivacy() {
      var detWindow=""
      detWindow=window.open('/services/legal/privacy/pop','privacypolicy','menubar=no,toolbar=no,location=no,directories=no,status=no,scrollbars=yes,resizable=no,width=524,height=500');
   }
   
   function popSlide(url) {
      var detWindow=""
      detWindow=window.open(url,'slideshow','menubar=no,toolbar=no,location=no,directories=no,status=no,scrollbars=no,resizable=no,width=910,height=570');
   }
   
	function go(url) {
		if (opener && !opener.closed) {
         opener.location.href = url;
         window.close();
		} else { 
		self.location.href = url;
		}
    }
   function goToURL(url) {
      if (url != "") { self.location=url; }
   }

// END Standard popup window script END //   

 

// Forms popup window script  //  


window.name="opener";

function seeWindow(address,width,height) { 
       var detWindow="" 
        detWindow=window.open(address,'detailWindow','toolbar=no,location=0,directories=no,status=no,menubar=0,scrollbars=yes,resizable=no,width='+width+',height='+height);
}

function convertWindow(address,width,height) { 
       var detWindow="" 
        detWindow=window.open(address,'detailWindow','toolbar=no,location=0,directories=no,status=no,menubar=0,scrollbars=yes,resizable=no,width='+width+',height='+height);
}


function excludeWindow(address,width,height) { 
       var detWindow="" 
        detWindow=window.open(address,'detailWindow','toolbar=no,location=0,directories=no,status=no,menubar=0,scrollbars=no,resizable=no,width='+width+',height='+height);
}

function recipeWindow(address,width,height) { 
       var detWindow="" 
        detWindow=window.open(address,'detailWindow','toolbar=no,location=0,directories=no,status=no,menubar=0,scrollbars=yes,resizable=no,width='+width+',height='+height);
}

function popWindow(address,name,scroll,resize,width,height) { 
       var detWindow="" 
        detWindow=window.open(address,name,'toolbar=no,location=0,directories=no,status=no,menubar=0,scrollbars=' + scroll + ',resizable=' + resize +',width=' + width + ',height=' +height);
}

// END Forms popup window script  //  