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

setw = 'toolbar=no,location=0,directories=no,status=no,menubar=0,scrollbars=yes,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();

}
}

function winopens(html,width){

setws = 'toolbar=no,location=0,directories=no,status=no,menubar=0,scrollbars=yes,resizable=no,width=' + width;

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

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

new_window.focus();

}
}

function openWindow(theURL,winName,features){
window.open(theURL,winName,features);
}
//-->