//  $Id: pops.js 73028 2008-04-21 20:49:43Z dselfrid $ 
function pop(fileName,width,height){
//The popup will automatically size to 500x400 if no size is specified.
//if you don't pass a url, you're on your own.
var popWidth = (width)?width:"500";
var popHeight = (height)?height:"400";
var popUrl = fileName;

window.open(popUrl,'popWin','width='+popWidth+', height='+popHeight+', resizable=yes, scrollbars=yes, left=100, top=100')

}
