function enableForm() { 
	document.getElementById("form1").disabled = false; 
} 
window.onload=function() {
	enableForm();
}

