function alternateTables(classname)
 {
  if(document.getElementsByTagName)
   {
    var tables = document.getElementsByTagName("table");
    var i = 0;
    for(j = 0; j < tables.length; j++)
     {
      if (tables[j].className == classname)
       {
        tables[j].className = classname + ((i++ % 2 == 0)?" even":" odd");
       } 
     } 
   } 
 }

var popup="";
function apriNEW(u,w,h,scr)
 {
  popup=window.open(u, "popup", "resizable=no,scrollbars="+scr+",height="+h+",width="+w+
                                ",location=no,menubar=no,screenX=50,screenY=50,status=no,toolbar=no");
  popup.focus();
 }