jQuery(document).ready(function(){
	function blank_check(){
		var has_blank = false;
		$('#mainform input[type="text"], #mainform input[type="password"]').each(function(){
			if($(this).val()==''){
				has_blank = true;
				return has_blank;
			}
		});
		return has_blank;
	}
	
	if(window.location.href.indexOf('newlogin=1') > -1){
		$('#mainform').submit(function(){
			if(!$('#btn_login').is(":visible") || blank_check()){
				return false;
			}

			$('#btn_login').after('<div id="login_processing_msg" style="width:250px;padding: 5px 5px 5px 8px; border:1px solid rgb(200,200,200); -webkit-border-radius:8px;"> <strong>Processing</strong> .... </div><p style="margin-left:10px;width:250px;font-size:9pt">Processing can take up to 30 seconds.<br />Please stand by.</p>');
			$('#btn_login').hide();
			return true;
		});
	
		$('#btn_login').mousedown(function(){
			if(blank_check()){
				alert('Error: One or more fields are blank.');
			}
			return true;
		});
	}
	
});

