<!--
function spawnWindow(newhtml,windowname,wide,high) {
    var windowFeatures="width="+wide+",height="+high+",directories=no,location=no,menubar=no,resizable=no,scrollbars=no,status=no,toolbar=no";
    NewWindow=window.open(newhtml,windowname,windowFeatures);
    NewWindow.focus();
}
//-->