
function ClearText()
{
    if(document.getElementById('NewsMail_txtEmail').value=='أضف بريدك الإليكترونى')
    {
        document.getElementById('NewsMail_txtEmail').value='';
    }
}

function SetToDefault()
{
    if(document.getElementById('NewsMail_txtEmail').value=='')
    {
            document.getElementById('NewsMail_txtEmail').value="أضف بريدك الإليكترونى";
    }
}  
function check()
{
  if ( window.event.keyCode == 13) {
                                            window.event.keyCode.returnValue=false;
        window.event.keyCode=true;
        redirect();
  }       
}
function SetDate(){
	var mydate=new Date()
	var year=mydate.getYear()
	if (year < 1000)
	year+=1900
	var day=mydate.getDay()
	var month=mydate.getMonth()
	var daym=mydate.getDate()
	if (daym<10)
	daym="0"+daym
	var dayarray=new Array("الاحد","الاثنين","الثلاثاء","الاربعاء","الخميس","الجمعة","السبت")
	var montharray=new Array("يناير","فبراير","مارس","ابريل","مايو","يوليو","يونيو","اغسطس","سبتمبر","أكتوبر","نوفمبر","ديسمبر")
	document.write("<div class='Date'>"+dayarray[day]+" "+daym+" "+montharray[month]+"  "+year+" </div>")
}

