
function ChangeToEnglish()
{
	var currentURL = window.location.href;
	var newURL = currentURL .replace("/ar/", "/en/");
	window.location= newURL  ;		
}

function ChangeToArabic()
{
	var currentURL = window.location.href;
	var newURL = currentURL .replace("/en/", "/ar/");
	window.location= newURL  ;		
}

function OpenWebsite(strWebsite)
{
	var currentURL = "";
	if(strWebsite == "ModheshWorld")
	{window.open ("http://www.dubaievents.ae/en/section/modhesh" ,"mywindow");}
	else if(strWebsite == "Events")
	{window.open ("/SiteCollectionImages/Events.pdf","mywindow");}	 
}


function OpenWebsiteArabic(strWebsite)
{
	var currentURL = "";
	if(strWebsite == "ModheshWorld")
	{window.open ("http://www.dubaievents.ae/ar/section/modhesh" ,"mywindow");}
	else if(strWebsite == "Events")
	{window.open ("/SiteCollectionImages/Events.pdf","mywindow");}	 
}





