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 openwin(url)
{
	window.open(url,'','location=no,menu=no,scrollbars=yes,resizable=yes,left=100,top=5,width=798,height=650');return false;
}


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;
}


