function checkMyStatusEgreetings()
{				
	if(document.egreetings.sender.value == '')
	{
		alert("Sorry ! Please fill in your name to proceed");
		return false;
	}
	if(document.egreetings.senderEmail.value == '')
	{
		alert("Sorry ! Please fill in your email address to proceed");
		return false;
	}
	if(document.egreetings.receipentsEmail.value == '')
	{
		alert("Sorry ! Please fill in the receipients email address to proceed");
		return false;
	}
	if(document.egreetings.cardMessage.value == '')
	{
		alert("Sorry ! Please fill in the message to proceed");
		return false;
	}
	
	
}
function checkMyStatusEventUpload()
{				
	if(document.uploadEvent.title.value == '')
	{
		alert("Sorry ! Please  fill in the title to proceed");
		return false;
	}	
	if(document.uploadEvent.data.value == '')
	{
		alert("Sorry ! Please fill in the dates to proceed");
		return false;
	}
	if(document.uploadEvent.city.value == '')
	{
		alert("Sorry ! Please fill in the city to proceed");
		return false;
	}
	if(document.uploadEvent.ctry.value == '')
	{
		alert("Sorry ! Please fill in the country name to proceed");
		return false;
	}
	if(document.uploadEvent.nam.value == '')
	{
		alert("Sorry ! Please fill in your name to proceed");
		return false;
	}
	if(document.uploadEvent.namemail.value == '')
	{
		alert("Sorry ! Please fill in your email address  to proceed");
		return false;
	}
	
	
}
