<!--

/*

Pop-up window

*/

// force OP to ignore scripts 
var not_opera = !(navigator.userAgent.indexOf("Opera") != -1);
      
function open_window(link_href,window_name) {
var version_4plus = (parseInt(navigator.appVersion) >= 4);
var new_url = link_href;
if (not_opera) {
  if (version_4plus) {
    var user_width = (screen.availWidth / 1.25);
    var user_height = (screen.availHeight / 1.25);
    var user_left = (user_width / 2);
    var user_top = (user_height / 2);
    var window_features = "width="+user_width+",height="+user_height+",left="+user_left+",top="+user_top+",screenX="+user_left+",screenY="+user_top+",scrollbars=no,toolbar=no,location=no,status=no,menubar=no,resizable=no,directories=no";
    new_window=window.open(new_url,window_name,window_features);
    new_window.focus();
  } else {
    new_window=window.open(new_url,window_name);
    new_window.focus();
  }
} else {
  var window_features = "width=800,height=500,scrollbars=yes";
  new_window=window.open(new_url,window_name,window_features);
  new_window.focus();
}

}

//-->