/* 	Function that opens a new window, used in register sections for the Zones part.
*	Created: 05/12/2001
*	By: Stephen Adams
*/
	function windowOpen(winName,width,height) {
		
	    myWindow = window.open("","windowRef","width=" + width + ",height=" + height+",top=50,left=50,screenX=50,screenY=50");
	    myWindow.location.href = "register/dspZones.cfm";
	    if (!myWindow.opener) myWindow.opener = self;
		myWindow.opener.ClientRegistration.IsWindowOpen.value = "Yes";
	}
	
	function myVoid() {;}


