function Save(){
	if(document.getElementById("a1").value == ""){
		document.getElementById("a1").focus();
		alert("Please Enter User Name!");
		return false;
	}
	if(document.getElementById("a2").value == ""){
		document.getElementById("a2").focus();
		alert("Please Enter Password!");
		return false;
	}
	if(document.getElementById("a3").value == ""){
		document.getElementById("a3").focus();
		alert("Please Enter Compay Id!");
		return false;
	}
	if(document.getElementById("a1").value.length < 4){
		document.getElementById("a1").focus();
		alert("Please Enter Valid User Name!");
		return false;
	}
	if(document.getElementById("a2").value.length < 4){
		document.getElementById("a2").focus();
		alert("Please Enter Valid Password!");
		return false;
	}
	if(document.getElementById("a3").value.length < 4){
		document.getElementById("a3").focus();
		alert("Please Enter Valid Company Id!");
		return false;
	}
	//Form1.submit();
}
function ONWindow(){
	window.open('yeni_firma_basvuru.jsp', 'YeniFirma', 'toolbar=no, directories=no, location=no, status=no, menubar=no, resizable=yes, scrollbars=no, width=550, height=600');	
}
