var timezone_cookie = _Ck_.get('lang');
var currentTZURL = window.location+'';
currentTZURL = currentTZURL.split('#')[0];
var d = new Date();
var gmtHours = d.getTimezoneOffset()/60;
if(currentTZURL.match(/(https?\:\/\/)?(.*)\.hp\.com\/?($|country\/us\/en\/welcome.html)/gi)){
	var currentTZLang = document.getElementsByTagName('html')[0].getAttribute('lang').toLowerCase();
	if(currentTZLang != 'en-us'){
		if(currentTZLang == 'en-uk'){
			if(timezone_cookie == null) {
			if(gmtHours >= -12 && gmtHours <= -5){
 					window.location= "http://welcome.hp.com/country/us/en/welcome.html";
				}
			}
			
			}
			else{
		if(timezone_cookie == null) {
			if(gmtHours >= 5 && gmtHours <= 10){
 					window.location= "http://welcome.hp.com/country/us/en/welcome.html";
				}
			}
			}
	}
}

//06022009