// JavaScript Document
 <!--

function validateForm()
{  		
   /*	if (!document.form1.acceptterm.checked) {
	         window.alert("Please check the box to proceed. ");
				 document.form1.acceptterm.focus();
				return false;
	}
	
	
	if (document.form1.email.value.length > 0) {
	
		var emailPattern = new RegExp("[\\w-\\.]+@(?!acme-hack)([\\w-]+\\.)+[\\w-]{2,4}$");
	
		  	if (!document.form1.email.value.match(emailPattern)) {
		    	window.alert("Please enter a valid email address.");
				 document.form1.email.focus();
				return false;
			}
	} else {
		window.alert("Please enter email address.");
		document.form1.email.focus();
		return false;
	}*/
	 
	// window.opener.document.form1[0].submit();
		//window.operner.location.reload(); 
		

		window.close();
		
//window.location.href="dataset.jsp";
		if (parent.opener && !parent.opener.closed) {
parent.opener.location.reload(true);
} 

		//window.location.href="dataset.jsp";
	//window.opener.RefreshPage();
	

/*window.opener.document.location.href="dataset.jsp";*/
/*
		if (window.opener && !window.opener.closed)
{
window.opener.location.reload();
self.close();
}*/

	    

	}
 //-->