  function zoomProfile(divIn) {
        theDiv = document.getElementById(divIn);
  
		if (document.getElementById) { // DOM3 = IE5, NS6 
			document.getElementById('divZoomProfileDefault').style.display = 'none'; 
		} 
		else { 
			if (document.layers) { // Netscape 4 
				document.divZoomProfileDefault.display = 'none'; 
			} 
			else { // IE 4 
				document.all.divZoomProfileDefault.display = 'none'; 
			} 
		} 
		if (document.getElementById) { // DOM3 = IE5, NS6 
			theDiv.style.display = 'block'; 
		} 
		else { 
			if (document.layers) { // Netscape 4 
				document.divIn.display = 'block'; 
			} 
			else { // IE 4 
				document.all.divIn.style.display = 'block'; 
			} 
		} 
  }

 function hideProfile(divIn) {

        theDiv = document.getElementById(divIn);
		if (document.getElementById) { // DOM3 = IE5, NS6 
			theDiv.style.display = 'none'; 
		} 
		else { 
			if (document.layers) { // Netscape 4 
				document.divIn.display = 'none'; 
			} 
			else { // IE 4 
				document.all.divIn.style.display = 'none'; 
			} 
		} 
		if (document.getElementById) { // DOM3 = IE5, NS6 
			document.getElementById('divZoomProfileDefault').style.display = 'block'; 
		} 
		else { 
			if (document.layers) { // Netscape 4 
				document.divZoomProfileDefault.display = 'block'; 
			} 
			else { // IE 4 
				document.all.divZoomProfileDefault.style.display = 'block'; 
			} 
		} 
  }



function openBrWindow(theURL,winName,features) { 
  window.open(theURL,winName,features);
}


var remote = '';

function launchRepeaterWindow(url) {
	if (!remote.closed && remote.location) {
		remote.location.href = url+'?sd='+document.myform.requireddatEventDate.value;
		remote.focus();
	} else {
		remote = open(url+'?sd='+document.myform.requireddatEventDate.value, "remoteInv", "scrollbars,width=570,height=490,left=50,top=20");
	}
}



