<!---
// A simple javascript to pop-up windows...
  
function window_open(newURL, newWidth, newHeight, resize) {
  // Declare and initialize top and left variables
  var calcLeft = 100;
  var calcTop = 100;
        
  // Update properties if comp. browser
  if (parseInt(navigator.appVersion) >= 4){
  calcTop = screen.availHeight /2 - newHeight / 2;
  calcLeft = screen.availWidth / 2 - newWidth / 2;}

  // Open the new window using top and left properties
  if(resize == "no")
  {
  		mywindow = window.open(newURL, 'remote', 'status=no,toolbar=no,menubar=no,location=no,scrollbars=' + resize + ',width=' + newWidth + ',height=' + newHeight + ',left=' + calcLeft + ',top=' + calcTop + ',resizable=' + resize);
  		mywindow.focus();
  }
  else
  {
  		mywindow = window.open(newURL, 'remote', 'status=no,toolbar=no,menubar=no,location=no,scrollbars=yes,width=' + newWidth + ',height=' + newHeight + ',left=' + calcLeft + ',top=' + calcTop + ',resizable=yes');
  		mywindow.focus();
  }
}
//-->
