<!--
function popup(url) 
{
 var width  = 500;
 var height = 600;
 var left   = (screen.width  - width)/2;
 var top    = (screen.height - height)/2;
 var params = 'width='+width+', height='+height;
 params += ', top='+top+', left='+left;
 params += ', directories=no';
 params += ', location=no';
 params += ', menubar=no';
 params += ', resizable=no';
 params += ', scrollbars=yes';
 params += ', status=no';
 params += ', toolbar=no';
 //url = url + '?parms=' + '<?=$passparm?>';
 newwin=window.open(url,'windowname5', params);
 if (window.focus) {newwin.focus()}
 return false;
}

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
function view_openBrWindow(theURL,winName,features) { //v2.0
  theURL = theURL + "?parms=" + "<?=$passparm?>";
  window.open(theURL,winName,features);
}

// -->