/*  Táblázatformázó  */
/*  by Ligtwings Studio 2004 */
function setPointer(theRow, thePointerImage)
{
    if (thePointerImage == '' || typeof(theRow.style) == 'undefined') {
        return false;
    }
    if (typeof(document.getElementsByTagName) != 'undefined') {
        var theCells = theRow.getElementsByTagName('td');
    }
    else if (typeof(theRow.cells) != 'undefined') {
        var theCells = theRow.cells;
    }
    else {
        return false;
    }

    var rowCellsCnt  = theCells.length;
    for (var c = 0; c < rowCellsCnt; c++) {
        theCells[c].background = thePointerImage;
    }

    return true;
}

function mess(link)
{
    location.href=link;
}

function Toggle(item) {
   obj=document.getElementById(item);
   visible=(obj.style.display!="none")
   key=document.getElementById("x" + item);
   if (visible) {
     obj.style.display="none";
   } else {
      obj.style.display="block";
   }
}
function imagewiever(img) {
	ujablak = window.open("imagewiever.php?img="+img,'win',"toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=1,width=100,height=100");
 	ujablak.moveTo(5,5);
 	ujablak.focus();
}
