function openContact(key) {
var rest='&firstnavinf=Global\\Navi\\Contact&firstnavinfa=o';
document.location.href='sp?open&cid=' +key +rest;
}
function openCareer(key) {
document.location.href='sp?open&cid=' +key;
}
function OW(theURL,winName,features) {
  window.open(theURL,winName,features);
}
function setCookie(name, value, expires, path, domain, secure)
{
	document.cookie = name + "=" +escape(value) +
		( (expires) ? ";expires=" + expires.toGMTString() : "") +
		( (path) ? ";path=" + path : "") + 
		( (domain) ? ";domain=" + domain : "") +
		( (secure) ? ";secure" : "");
}
function setLanguage(lang)
{
	setCookie('lang', lang);
	document.location.reload();
}
