function zoomout(element)
{
  if(ns6)
  {
    document.getElementById(element).style.fontSize='14pt';
  }
  else if(ie)
  {
    document.all(element).style.fontSize='14pt';
  } 
}

function zoomin(element)
{
  if(ns6)
  {
    document.getElementById(element).style.fontSize='11pt';
  }
  else if(ie)
  {
    document.all(element).style.fontSize='11pt';
  } 
}