<!--
function winopen(html,width,height){

setw = 'toolbar=no,location=0,directories=no,status=no,menubar=0,scrollbars=no,resizable=no,width=' + width + ',height=' + height;

new_window = window.open(html,'newwindow',setw);

if( navigator.appName == 'Netscape' && navigator.appVersion.charAt(0)>= 3 ){

new_window.focus();

}
}
//-->