var dayNames = new Array("الأحد","الإثنين","الثلاثاء","الأربعاء","الخميس","الجمعة","السبت");
var monthNames = new Array("يناير","فبراير","مارس","إبريل","مايو","يونيو","يوليو","أغسطس","سبتمبر","أكتوبر","نوفمبر","ديسمبر");
var dt = new Date();
var y  = dt.getYear();
if (y < 1000) y +=1900;
document.write(dayNames[dt.getDay()] + ", " + dt.getDate() + " " + monthNames[dt.getMonth()] + "   " + y);

function arabic()
{
	document.location = new String(document.location).replace(/\/en\//g, "/ar/");
}
function english()
{
	document.location = new String(document.location).replace(/\/ar\//g, "/en/");
}
function pressrelease(url)
{
	window.open(url,"pressrelease","width=634, height=600,status=no,location=no,resizable=no,scrollbars=yes");
}