
var inputAccountForm = new Object();
inputAccountForm.formId = "inputAccountForm";
inputAccountForm.inputId = "account";
inputAccountForm.submitId = "submitInputAccount";

$(document).ready(
	function(){
		$("#"+inputAccountForm.submitId).click(
			function(){
				return ckeckInput();
			}
		);	
	}
);

function ckeckInput(){
	if($("#"+inputAccountForm.inputId).val().length > 0){
		return true;
	}
	else{
		return false;
	}
}

