<!--
function mOvr(src,clrOver){if (!src.contains(event.fromElement)){src.style.cursor = "hand";src.bgColor = clrOver;}} function mOut(src,clrIn){if (!src.contains(event.toElement)){src.style.cursor = "default";src.bgColor = clrIn;}}
function mClk(src){if(event.srcElement.tagName=="TD"){src.children.tags("A")[0].click();}}

    var MOUSEOVER_COLOR = "#000000";

    function NewColor(callingElement)
    {
        if (!callingElement.contains(event.fromElement))
        {
            MOUSEOUT_COLOR = callingElement.style.color;
            callingElement.style.color = MOUSEOVER_COLOR;
        }
    }

    function OldColor(callingElement)
    {
        if (!callingElement.contains(event.toElement))
            callingElement.style.color = MOUSEOUT_COLOR;
    }


function openPicWnd(imageName, imageWidth, imageHeight)
{  newWindow = window.open("","newWindow","width="+imageWidth+",height="+imageHeight);
newWindow.document.open();  
newWindow.document.write ('<html><title>Renema Club: фото.</title> <body bgcolor="#EDE7E2" leftmargin="0" topmargin="0"  marginheight="0" marginwidth="0" onBlur="self.close()">');
newWindow.document.write('<img src='+imageName+' width='+imageWidth+' height='+imageHeight+'>');
newWindow.document.write('</body></html>');
newWindow.document.close();
newWindow.focus();}
//-->
