function f8page()
{
   var url = document.f8.pg.options[document.f8.pg.selectedIndex].value; 
   window.location.href = url;
}

function f9url()
{
   var url = document.f9.url.options[document.f9.url.selectedIndex].value; 
   window.open(url);
}

function doPrint() 
{
bdhtml=window.document.body.innerHTML;
sprnstr="<!--startprint-->";
eprnstr="<!--endprint-->";
prnhtml=bdhtml.substr(bdhtml.indexOf(sprnstr)+17);
prnhtml=prnhtml.substring(0,prnhtml.indexOf(eprnstr));
window.document.body.innerHTML=prnhtml;
window.print();
window.document.body.innerHTML=bdhtml;
}

