function submitpage(theform, p){
    if(theform=='last')
                document.last.submit();
        if(theform=='first')
                document.first.submit();
        if(theform=='prev')
                document.prev.submit();                
        if(theform=='next')
                document.next.submit();
         if(theform=='f1')
                document.f1.submit();
        if(theform=='f2')
                document.f2.submit(); 
        if(theform=='f3')
                document.f3.submit();
        if(theform=='f4')
                document.f4.submit();
        if(theform=='f5')
                document.f5.submit();                 
        
}
function bookmarksite(title, url){
if (document.all)
window.external.AddFavorite(url, title);
else if (window.sidebar)
window.sidebar.addPanel(title, url, "")
}
function reload_again()
{
	setTimeout(hello, 50000);
}
function hello()
{
	document.location.href=document.location.href;
}

