function validateNewAccount(theForm){

		if(theForm.company.value == ""){
			alert("Please enter your company name");
			theForm.company.focus();
			return false;
		}

		if(!isName(theForm.firstname.value)){
			alert("Please enter your first name");
			theForm.firstname.focus();
			return false;
		}

		if(!isName(theForm.surname.value)){
			alert("Please enter your last name");
			theForm.surname.focus();
			return false;
		}
		
		if(!isAddressValid("credapp")){
			alert("Please choose an address.");
			return false;
		}

		return true;
	}
	function openWindow(url, params){
		var _params = 'toolbar=no, menubar=no, scrollbars=yes, resizable=yes, location=no, directories=no, status=no';
		if( params != null && params != "" )
			_params = params;
		window.open (url, 'Window', _params);
	}
