﻿// JavaScript Document
function changeLanguage(new_lang)
{
	var URL = window.location.pathname;

	if(new_lang=="AR")
	{
		var newURL = URL.replace("/en/", "/"+new_lang.toLowerCase()+"/");	
	}
	else
	{
		
		var newURL = URL.replace("/ar/", "/"+new_lang.toLowerCase()+"/");	
	}
    /*window.location.href= newURL;*/
	setTimeout(function() { window.location = newURL; }, 0);
}

/*$(document).ready(function() {
	$('#contact_us').live('click', function() {
		$('#load_container').load('contact_us.html');
		$('#contact_page').show();
		$('html, body').scrollTop(0);
	});
})*/

function contactus_popup()
{
var URLVar="http://www.globalbuypower.com/GBPServiceMgr2.dyn?CntryCd=ME&LangCd=ar&WebSiteID=GBPME&ReqsType=Pull&ServiceName=ContactSector&NampltCd=999GMAR^ME";
window.open(URLVar,"اتصلبنا","location=1,status=1,left=150,top=80,scrollbars=1,width=700,height=600"); 
}
