// Pop-up Script - Rod Roy

function openwindow(sourcefile) {

///////////////////SPECIFY WIDTH AND HEIGHT OF WINDOW////////////////////////////////////////////////
w= 500 ///THIS IS WITDTH/////////////////////////////////////////////////////////////////////////////
h= 500 ///THIS IS HEIGHT/////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////////////

  if (document.all){
   var xMax = screen.width, yMax = screen.height;
                   } 
				   else {
  						if (document.layers){
   						 var xMax = window.outerWidth, yMax = window.outerHeight;
   											} 
											else {
   											 var xMax = 1024, yMax = 768;
  											}
						}
  var xOffset = (xMax - w)/2, yOffset = (yMax - h)/2;
  var myTime = new Date();
  var myMinutes = myTime.getMinutes();
  var mySeconds = myTime.getSeconds();
  var name = mySeconds*myMinutes;
  var options = "width="+w+",height="+h+",screenX=" +xOffset+ ",screenY=" +yOffset+ ",top=" +yOffset+ ",left=" +xOffset+",scrollbars=yes,resizable=yes"
  
  window.open(sourcefile,name,options);

}
