function Save() {
	if (Form1.a1.value == "") {
		document.Form1.a1.focus();
		alert("Please enter User Name!");
		return false;
	}
	if (Form1.a2.value == "") {
			document.Form1.a2.focus();
		alert("Please enter Password!");
		return false;
	}
	if (Form1.a3.value == "") {
		document.Form1.a3.focus();
		alert("Please enter Compay Id!");
		return false;
	}
	if (Form1.a1.value.length < 4) {
		document.Form1.a1.focus();
		alert("Please enter valid User Name!");
		return false;
	}
	if (Form1.a2.value.length < 4) {
		document.Form1.a2.focus();
		alert("Please enter valid Password!");
		return false;
	}
	if (Form1.a3.value.length < 4) {
		document.Form1.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');  
	
}

