//-------------------------------------------------
//--used in home_page
function funCheck()
{
	if (document.mail_list.email.value== "")
	{
		alert(" الرجاء إدخال البريد الإلكتروني");
		document.mail_list.email.focus();
		return false;
	}
	if (document.mail_list.email.value!='')
	//checking fro @ and a . in the email field
	{
		var first = new Array();
		var rest = new Array();
		first =document.mail_list.email.value.split("@");
		if(first[1])
			{
			 rest = first[1].split(".");
			}
			
		if((!first[0]) || (!rest[0]) || (!rest[1]))
			 {
				alert("الرجاء إدخال بريد إلكتروني صحيح");							
				document.mail_list.email.focus();
				document.mail_list.email.select();
				return false;
			 } 
	}
	return true
}
//------------------------------------------------------
//--used in home_page
function register()
{
	document.mail_list.elements.suitable_id.value='subscripe';
}
function un_register()
{
	document.mail_list.elements.suitable_id.value='un_subscripe';
}
//-------------------------------------------------------
