// JavaScript Document
function validate()
{
   if((document.registration.email.value=="")||(document.registration.pass.value=="")||(document.registration.pass2.value=="")||(document.registration.name.value=="")||(document.registration.address.value=="")||(document.registration.city.value=="")||(document.registration.postal.value=="")||(document.registration.country.value==""))
   {
		alert("All field must be filled, except for phone");
		return( false );
	}
}

function login()
{
   if((document.login.username.value=="")||(document.login.pass.value==""))
   {
		alert("Username or Password field must be filled");
		return( false );
	}
}