// JavaScript Document

		function validateAndSend(){
			var theForm
			theForm = document.theForm1
			if(theForm.un.value.length == 0){
				alert("You need to insert a Security check Username")
				return;
			}
			if(theForm.pw.value.length == 0){
				alert("You need to insert a Security check Password")
				return;
			}
			var username = theForm.un.value;
			theForm.un.value = "";
			var password = theForm.pw.value;
			theForm.pw.value = "";
			window.open('http://download.aiglondon.com/download?action=LoginController&username=' + username + '&password=' + password,'' ,'toolbar=yes,location=yes,status=yes,menubar=yes,scrollbars=yes,resizable=yes,width=700,height=700' );
	}
			
