function showMessageEmail(msg)
{
	if(msg=='')
		return;
		
	if(msg=='1'){
		alert("You are subscribed to News Letter.");
		return;
	}
	
	if(msg=='2'){
		alert("You are already subscribed to News Letter.");
		return;
	}	
}

function showMessageContact(msg)
{
	if(msg=='')
		return;
		
	if(msg=='3'){
		alert("Your query is submitted. We will contact you soon.");
		return;
	}
	
}