// JavaScript Document

function openexit(){
	//configure "seeyou.htm and the window dimensions as desired
	window.open("http://h50155.www5.hp.com/gofa/external/haveyoursay/haveyoursay-exit-cn.html","","width=600,height=600,scrollbars");
}

function get_cookie(Name) {
  var search = Name + "="
  var returnvalue = "";
  if (document.cookie.length > 0) {
    offset = document.cookie.indexOf(search)
    if (offset != -1) { // if cookie exists
      offset += search.length
      // set index of beginning of value
      end = document.cookie.indexOf(";", offset);
      // set index of end of cookie value
      if (end == -1)
         end = document.cookie.length;
      returnvalue=unescape(document.cookie.substring(offset, end))
      }
   }
  return returnvalue;
}

function loadexit(){
	if (get_cookie('popped')==''){
		openexit()
		document.cookie="popped=yes"
	}
}

function openNewWindow(URLtoOpen, windowName) {
	window.open(URLtoOpen, "_blank", "height=606,width=970,toolbar,status,scrollbars,resizable,location");
//	window.open(URLtoOpen, windowName, "height=606,width=970,toolbar,status,scrollbars,resizable,location");
}
