<!--var _PopupOffWindow = 0var _PopupOffURL = ""var _PopupOnWindow = 0function PopupOff(strURL, height, width, bFocus){  var strProperty = "height=" + height + ",width=" + width + ",menubar=0,location=0,scrollbars=1,resizable=1,dependent=0"  var windowName = "BeautiPage_PopupOff"    if (_PopupOffURL == "")     _PopupOffURL = strURL       if (_PopupOffWindow == 0)     _PopupOffWindow = window.open(strURL, windowName, strProperty, true);  else{     if (_PopupOffWindow.closed){        _PopupOffWindow = window.open(strURL, windowName, strProperty, true);	 }  }    if (_PopupOffURL.toLowerCase() != strURL.toLowerCase())     _PopupOffWindow.location.href = strURL  if (bFocus)     _PopupOffWindow.focus()  else  {     _PopupOffWindow.blur()     window.focus()     //setTimeout("window.focus()", 200) //Just in case of Netscape Browser  }}function PopupOn(strURL, height, width){  var strProperty = "height=" + height + ",width=" + width + ",menubar=0,location=0,scrollbars=1,resizable=1,dependent=1"  var windowName = "BeautiPage_PopupOn"  if (_PopupOnWindow == 0)     _PopupOnWindow = window.open(strURL, windowName, strProperty);  else{     if (_PopupOnWindow.closed){        _PopupOnWindow = window.open(strURL, windowName, strProperty);	 }  }  _PopupOnWindow.focus()} //-->