function tableOver(src,color)  {
   src.style.backgroundColor=color;
   src.style.cursor='hand';
        }

function tableOut(src,color) {
   src.style.backgroundColor=color;
        }

function openwin(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}