
// ROW ROLLOVER
// css for it is in templates

/* This script and many more are available free online at
The JavaScript Source!! http://javascript.internet.com
Created by: Chris Heilmann :: http://www.alistapart.com/articles/tableruler */

function tableruler() {
  if (document.getElementById && document.createTextNode) {
    var tables=document.getElementsByTagName('table');
    for (var i=0;i<tables.length;i++)
    {
      if(tables[i].className=='ruler') {
        var trs=tables[i].getElementsByTagName('tr');
        for(var j=0;j<trs.length;j++)
        {
          if(trs[j].parentNode.nodeName=='TBODY') {
            trs[j].onmouseover=function(){this.className='ruled';return false}
            trs[j].onmouseout=function(){this.className='';return false}
          }
        }
      }
    }
  }
}
window.onload=function(){tableruler();}
// -->




function popWin(url) {
	//testwindow= window.open ("", "mywindow", "location=1,status=1,scrollbars=1,width=100,height=100");
	//testwindow.moveTo(0,0);
	
	window.open (url,"mywindow","location=0,menubar=0,resizable=1,width=580,height=760");
}