// JavaScript Document
 function PopUp(url,xsize,ysize) {
	 // Declare variable to hold the window object
	 var newWin;
	
	 // Create the window object
	 newWin=window.open (url,'New','toolbar=yes,location=no,directories=no,status=no,menubar=yes,scrollbars=yes,resizable=yes,copyhistory=yes,width=xsize,height=ysize')
	
	 // Set focus on the new window
	 newWin.focus();
	
	 // return false to the page calling the function
	 return false;
 }

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
