document.write ('<DIV id=divMenu style="POSITION: absolute;TOP: 120px">');
document.write ('  <table border="0" cellspacing="0" cellpadding="0">');
document.write ('	   <tr> ');
document.write ('      <td valign="top">');
document.write ('        <object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="81" height="560">');
document.write ('          <param name="movie" value="/swf/quick.swf">');
//back...//document.write ('          <param name="wmode" value="transparent" />');
document.write ('          <param name="wmode" value="transparent" />');
document.write ('          <param name="quality" value="high">');
document.write ('          <embed src="/swf/quick.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="81" height="415"></embed>');
document.write ('        </object>');
document.write ('      </td>');
document.write ('	   </tr>');
document.write ('	   <tr>');
document.write ('	    <td height="15">');
document.write ('	   </tr>');
/*document.write ('	   <tr>');
document.write ('	    <td valing="top">');
document.write ('        <object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="81" height="70">');
document.write ('          <param name="movie" value="/swf/banner.swf">');
document.write ('          <param name="quality" value="high">');
document.write ('          <embed src="/swf/banner.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="81" height="70"></embed>');
document.write ('        </object>');
document.write ('      </td>');
document.write ('	   </tr>');*/
document.write ('  </table>');
document.write ('</DIV>');

var bNetscape4plus = (navigator.appName == "Netscape" && navigator.appVersion.substring(0,1) >= "4");
var bExplorer4plus = (navigator.appName == "Microsoft Internet Explorer" && navigator.appVersion.substring(0,1) >= "4");
function CheckUIElements(){
        var yMenuFrom, yMenuTo, yButtonFrom, yButtonTo, yOffset, timeoutNextCheck;

        if(bNetscape4plus ) {
                yMenuFrom   = document.getElementById("divMenu").top;
                yMenuTo     = top.pageYOffset + 0;
        }
        else if(bExplorer4plus ) {
                yMenuFrom   = parseInt (document.getElementById("divMenu").style.top, 0);
                yMenuTo     = document.body.scrollTop + 100;
        }

        timeoutNextCheck = 0;

        if(Math.abs (yButtonFrom - (yMenuTo + 152)) < 6 && yButtonTo < yButtonFrom ) {
                setTimeout ("CheckUIElements()", timeoutNextCheck);
                return;
        }

        if(yButtonFrom != yButtonTo ) {
                yOffset = Math.ceil( Math.abs( yButtonTo - yButtonFrom ) / 10 );
                if(yButtonTo < yButtonFrom )
                        yOffset = -yOffset;

                if(bNetscape4plus )
                        document.getElementById("divLinkButton").top += yOffset;
                else if(bExplorer4plus )
                        document.getElementById("divLinkButton").style.top = parseInt (document.getElementById("divLinkButton").style.top, 10) + yOffset;

                timeoutNextCheck = 10;
        }
        if(yMenuFrom != yMenuTo ) {
                yOffset = Math.ceil( Math.abs( yMenuTo - yMenuFrom ) / 20 );
                if(yMenuTo < yMenuFrom )
                        yOffset = -yOffset;

                if(bNetscape4plus )
                        document.getElementById("divMenu").top += yOffset;
                else if(bExplorer4plus )
                        document.getElementById("divMenu").style.top = parseInt (document.getElementById("divMenu").style.top, 10) + yOffset;

                timeoutNextCheck = 10;
        }

        setTimeout ("CheckUIElements()", timeoutNextCheck);
}

function OnLoad()
{
        var y;
        if(top.frames.length )
        if(bNetscape4plus )
        {
                document.getElementById("divMenu").top = top.pageYOffset + 135;
                document.getElementById("divMenu").visibility = "visible";
        }
        else if(bExplorer4plus ) {
                document.getElementById("divMenu").style.top = document.body.scrollTop + 135;
                document.getElementById("divMenu").style.visibility = "visible";
        }
        CheckUIElements();
        return true;
}
OnLoad();
