function Nospaces(checkString)
{
	var newString 	= "";
	var i 			= 0;
	var st 			= 0;
	
	if(checkString == null){return null;}
	
	for (i = 0; i < checkString.length; i++)
	{
		ch = checkString.substring(i, i+1);
		if (ch != " "){newString += ch;}
	}
	return newString;
}

function OnWebMailLogin()
{
	var uname = Nospaces(document.dataentry.email.value);
	
	if((uname!=null) && (uname.length > 0) && (document.dataentry.password.value!='')){document.dataentry.submit();}
	else{alert('Please insert username and password'); return;}
}

