<!-- Begin
function popUp(URL,xwidth,yheight,scrolling) {
if(scrolling=='') var scrolling= "No"; 

LeftPosition = (screen.width-xwidth)/2;
TopPosition  = (screen.height-yheight)/2;

mywindow = window.open(URL, 'fye', 'toolbar=0,scrollbars='+scrolling+',location=0,statusbar=0,menubar=0,resizable=0,width='+xwidth+',height='+yheight+',left = '+LeftPosition+',top = '+TopPosition);
}
// End -->
