function checkValue(msg)
{
	var m=document.getElementById('email');
	if(m.value=='')
	{
		alert(msg);
		return false;
	}
	return true;	
}
