<!--
function popup(url) 
{
 var width  = screen.width - 60;
 var height = screen.height - 270;
 var left   = 25;
 var top    = 25;
 var params = 'width='+width+', height='+height;
 params += ', top='+top+', left='+left;
 params += ', directories=1';
 params += ', location=1';
 params += ', menubar=1';
 params += ', resizable=1';
 params += ', scrollbars=1';
 params += ', status=1';
 params += ', toolbar=1';
 newwin=window.open(url,'windowname5', params);
 if (window.focus) {newwin.focus()}
 return false;
}
// -->