
function body_onload(){
//only resize for mozilla n safari 
if(!document.all){

  nav = document.getElementById('pagenavcontainer');
  if(nav){
	 atags =  nav.getElementsByTagName('a');
   for(i=0;i<atags.length;i++){
    if(atags[i].parentNode.nodeName =='LI' && atags[i].parentNode.className !="noresize"){
       atags[i].parentNode.style.overflow = "hidden";
       oH= atags[i].parentNode.offsetHeight;
       nH =oH-1;
//       alert(oH+" & "+nH);
       atags[i].parentNode.style.marginBottom ="1px";
       atags[i].parentNode.style.height = nH+"px";	

    }
		
   }
  }
 }
}
function doprint(){
 window.print();
 return false;
}