// Variables Declaration
//---------------------------------------------
//---------------------------------------------
var iScreenWidth = screen.width;
var iScreenHeight = screen.height;




// Functions Declaration
//---------------------------------------------
//---------------------------------------------
function fShowMap(){
	window.open("/en/contactUs/map.htm","_blank","left=50,top=50,height=507,width=505,status=yes,menubar=no,scrollbars=no,resizable=no");
}


function fSquashPopUp(sPageName){
	window.open(sPageName,"_blank","left=50,top=50,height=550,width=790,status=no,menubar=no,scrollbars=yes,resizable=yes");
}


function navigate(theForm){
	if (theForm.options[theForm.selectedIndex].value == "0"){	
		return (false);
	}
	window.location.href = "#" + theForm.options[theForm.selectedIndex].value;
	theForm.selectedIndex = 0;
	return (true);
}


function navigateURL(theForm){
	if (theForm.options[theForm.selectedIndex].value == "0"){	
		return (false);
	}
	window.location.href = theForm.options[theForm.selectedIndex].value;
	theForm.selectedIndex = 0;
	return (true);
}


//Login
//-------------------------------------
function fOpenNewWinen(){
	window.open("/en/memberprog/login.asp","_blank","left=50,top=50,height=320,width=440,status=no,menubar=no,scrollbars=yes,resizable=yes");
}

function fOpenNewWinfr(){
	window.open("/fr/memberprog/login.asp","_blank","left=50,top=50,height=320,width=440,status=no,menubar=no,scrollbars=yes,resizable=yes");
}


//Html Template
//-------------------------------------
function fOpenTemplate(sPageName){
	if(iScreenWidth > 800) {
		iWinWidth = 800;
		iWinHeight = 500;
	}else {
		iWinWidth = 700;
		iWinHeight = 350;
	}

	window.open(sPageName,"_blank","left=10,top=10,height=" + iWinHeight + ",width=" + iWinWidth + ",status=yes,menubar=yes,scrollbars=yes,resizable=yes");
}
