function start1()
         {
           if (is_gecko)
           {
           go_gecko();
           }
           else if (is_konqueror)
           {
           go_konqueror();
           }
           else if (is_nav4)
           {
           go_nav4up();
           }
           else if (is_ie4up)
           {
           go_ie4up();
           }
           else
           {
           alert ("These pages may not display correctly in your browser; we would suggest using Internet Explorer 4+, Netscape 6+ or Mozilla. (Netscape 4+ and Konqueror may also work ok.)")
           }
         }


var steps;
var cntr;
var overshoot;
var navbarimgwidth0;
var navbarimgheight0;
var emmsleft0;
var emmstop0;
var emmswidth0;
var emmsheight0;
var pvpleft0;
var pvptop0;
var pvpwidth0;
var pvpheight0;
var menuleft0;
var menutop0;
var menuwidth0;
var menuheight0;
var loadingbarimgwidth0;


// --------------------- GECKO SECTION STARTS HERE ------------------------
        function go_gecko()
             {
             navbarimgwidth0=parseInt(document.getElementById("navbarimg").width);
             navbarimgheight0=parseInt(document.getElementById("navbarimg").height);
             emmsleft0=parseInt(document.getElementById("emms").style.left);
             emmstop0=parseInt(document.getElementById("emms").style.top);
             emmswidth0=parseInt(document.getElementById("emms").style.width);
             emmsheight0=parseInt(document.getElementById("emms").style.height);
             pvpleft0=parseInt(document.getElementById("pvp").style.left);
             pvptop0=parseInt(document.getElementById("pvp").style.top);
             pvpwidth0=parseInt(document.getElementById("pvp").style.width);
             pvpheight0=parseInt(document.getElementById("pvp").style.height);
             menuleft0=parseInt(document.getElementById("menu").style.left);
             menutop0=parseInt(document.getElementById("menu").style.top);
             menuwidth0=parseInt(document.getElementById("menu").style.width);
             menuheight0=parseInt(document.getElementById("menu").style.height);
             contentleft0=parseInt(document.getElementById("content").style.left);
             contenttop0=parseInt(document.getElementById("content").style.top);
             contentwidth0=parseInt(document.getElementById("content").style.width);
             contentheight0=parseInt(document.getElementById("content").style.height);
             loadingbarimgwidth0=parseInt(document.getElementById("loadingbarimg").width);
             steps=40;
             cntr=0;
             overshoot=1;
             setTimeout("loading_gecko()",500);
             }

        function loading_gecko()
             {
             document.getElementById("loadingbarimg").width = loadingbarimgwidth0 * Math.sin(Math.PI/2/steps*cntr);
             if (cntr<1){document.getElementById("loadingbox").style.visibility="visible";document.getElementById("loadingbar").style.visibility="visible";}
             cntr++;
             if (cntr<steps+1){setTimeout("loading_gecko()",50);} else {setTimeout("hideloading_gecko()",2000);}
             }

        function hideloading_gecko()
             {
             document.getElementById("loadingbox").style.visibility="hidden";
             document.getElementById("loadingbar").style.visibility="hidden";
             cntr=0;steps=25;overshoot=1;setTimeout("navbardraw_gecko()",1000);
             }

        function navbardraw_gecko()
             {
             document.getElementById("navbarimg").width = navbarimgwidth0 * Math.sin(Math.PI/2/steps*cntr);
             document.getElementById("navbarimg").height = navbarimgheight0 * Math.sin(Math.PI/2/steps*cntr);
             if (cntr<1){document.getElementById("navbar").style.visibility="visible";}
             cntr++;
             if (cntr<steps+1){setTimeout("navbardraw_gecko()",35);} else {cntr=0;steps=20;overshoot=1.1;setTimeout("pvpflyin_gecko()",1000);}
             }

        function pvpflyin_gecko()
             {
             document.getElementById("pvp").style.left = -pvpwidth0 + (pvpwidth0+pvpleft0) / Math.sin(Math.PI/2*overshoot)* Math.sin(Math.PI/2*overshoot/steps*cntr);
             // document.getElementById("pvp").style.top = -pvpheight0 + (pvpheight0+pvptop0) / Math.sin(Math.PI/2*overshoot)* Math.sin(Math.PI/2*overshoot/steps*cntr);
             if (cntr<1){document.getElementById("pvp").style.visibility="visible";}
             cntr++;
             if (cntr<steps+1){setTimeout("pvpflyin_gecko()",20);} else {cntr=0;steps=20;overshoot=1.1;setTimeout("emmsflyin_gecko()",1000);}
             }

        function emmsflyin_gecko()
             {
             document.getElementById("emms").style.left = -emmswidth0 + (emmswidth0+emmsleft0) / Math.sin(Math.PI/2*overshoot) * Math.sin(Math.PI/2*overshoot/steps*cntr);
             // document.getElementById("emms").style.top = -emmsheight0 + (emmsheight0+emmstop0) / Math.sin(Math.PI/2*overshoot) * Math.sin(Math.PI/2*overshoot/steps*cntr);
             if (cntr<1){document.getElementById("emms").style.visibility="visible";}
             cntr++;
             if (cntr<steps+1){setTimeout("emmsflyin_gecko()",20);} else {cntr=0;steps=20;overshoot=1.1;setTimeout("menuflyin_gecko()",1000);}
             }

        function menuflyin_gecko()
             {
             // document.getElementById("menu").style.left = -menuwidth0 + (menuwidth0+menuleft0) / Math.sin(Math.PI/2*overshoot) * Math.sin(Math.PI/2*overshoot/steps*cntr);
             document.getElementById("menu").style.top = -menuheight0 + (menuheight0+menutop0) / Math.sin(Math.PI/2*overshoot) * Math.sin(Math.PI/2*overshoot/steps*cntr);
             if (cntr<1){document.getElementById("menu").style.visibility="visible";}
             cntr++;
             if (cntr<steps+1){setTimeout("menuflyin_gecko()",20);} else {cntr=0;steps=20;overshoot=1.0;setTimeout("contentflyin_gecko()",1000);}
             }

        function contentflyin_gecko()
             {
             // document.getElementById("content").style.left = -contentwidth0 + (contentwidth0+contentleft0) / Math.sin(Math.PI/2*overshoot) * Math.sin(Math.PI/2*overshoot/steps*cntr);
             document.getElementById("content").style.top = -contentheight0 + (contentheight0+contenttop0) / Math.sin(Math.PI/2*overshoot) * Math.sin(Math.PI/2*overshoot/steps*cntr);
             if (cntr<1){document.getElementById("content").style.visibility="visible";}
             cntr++;
             if (cntr<steps+1){setTimeout("contentflyin_gecko()",20);} else {cntr=0;steps=20;overshoot=1}
             }
// --------------------- GECKO SECTION ENDS HERE ------------------------


// --------------------- INTERNET EXPLORER 4up SECTION STARTS HERE ------------------------
        function go_ie4up()
             {
             navbarimgwidth0=parseInt(document.all.navbarimg.width);
             navbarimgheight0=parseInt(document.all.navbarimg.height);
             emmsleft0=parseInt(document.all.emms.style.left);
             emmstop0=parseInt(document.all.emms.style.top);
             emmswidth0=parseInt(document.all.emms.style.width);
             emmsheight0=parseInt(document.all.emms.style.height);
             pvpleft0=parseInt(document.all.pvp.style.left);
             pvptop0=parseInt(document.all.pvp.style.top);
             pvpwidth0=parseInt(document.all.pvp.style.width);
             pvpheight0=parseInt(document.all.pvp.style.height);
             menuleft0=parseInt(document.all.menu.style.left);
             menutop0=parseInt(document.all.menu.style.top);
             menuwidth0=parseInt(document.all.menu.style.width);
             menuheight0=parseInt(document.all.menu.style.height);
             contentleft0=parseInt(document.all.content.style.left);
             contenttop0=parseInt(document.all.content.style.top);
             contentwidth0=parseInt(document.all.content.style.width);
             contentheight0=parseInt(document.all.content.style.height);
             loadingbarimgwidth0=parseInt(document.all.loadingbarimg.width);
             steps=40;
             cntr=0;
             overshoot=1;
             setTimeout("loading_ie4up()",500);
             }

        function loading_ie4up()
             {
             document.loadingbarimg.width = loadingbarimgwidth0 * Math.sin(Math.PI/2/steps*cntr);
             if (cntr<1){document.all.loadingbox.style.visibility="visible";document.all.loadingbar.style.visibility="visible";}
             cntr++;
             if (cntr<steps+1){setTimeout("loading_ie4up()",50);} else {setTimeout("hideloading_ie4up()",2000);}
             }

        function hideloading_ie4up()
             {
             document.all.loadingbox.style.visibility="hidden";
             document.all.loadingbar.style.visibility="hidden";
             cntr=0;steps=25;overshoot=1;setTimeout("navbardraw_ie4up()",1000);
             }

        function navbardraw_ie4up()
             {
             document.all.navbarimg.width = navbarimgwidth0 * Math.sin(Math.PI/2/steps*cntr);
             document.all.navbarimg.height = navbarimgheight0 * Math.sin(Math.PI/2/steps*cntr);
             if (cntr<1){document.all.navbar.style.visibility="visible";}
             cntr++;
             if (cntr<steps+1){setTimeout("navbardraw_ie4up()",35);} else {cntr=0;steps=20;overshoot=1.1;setTimeout("pvpflyin_ie4up()",1000);}
             }

        function pvpflyin_ie4up()
             {
             document.all.pvp.style.left = -pvpwidth0 + (pvpwidth0+pvpleft0) / Math.sin(Math.PI/2*overshoot)* Math.sin(Math.PI/2*overshoot/steps*cntr);
             // document.all.pvp.style.top = -pvpheight0 + (pvpheight0+pvptop0) / Math.sin(Math.PI/2*overshoot)* Math.sin(Math.PI/2*overshoot/steps*cntr);
             if (cntr<1){document.all.pvp.style.visibility="visible";}
             cntr++;
             if (cntr<steps+1){setTimeout("pvpflyin_ie4up()",20);} else {cntr=0;steps=20;overshoot=1.1;setTimeout("emmsflyin_ie4up()",1000);}
             }

        function emmsflyin_ie4up()
             {
             document.all.emms.style.left = -emmswidth0 + (emmswidth0+emmsleft0) / Math.sin(Math.PI/2*overshoot) * Math.sin(Math.PI/2*overshoot/steps*cntr);
             // document.all.emms.style.top = -emmsheight0 + (emmsheight0+emmstop0) / Math.sin(Math.PI/2*overshoot) * Math.sin(Math.PI/2*overshoot/steps*cntr);
             if (cntr<1){document.all.emms.style.visibility="visible";}
             cntr++;
             if (cntr<steps+1){setTimeout("emmsflyin_ie4up()",20);} else {cntr=0;steps=20;overshoot=1.1;setTimeout("menuflyin_ie4up()",1000);}
             }

        function menuflyin_ie4up()
             {
             // document.all.menu.style.left = -menuwidth0 + (menuwidth0+menuleft0) / Math.sin(Math.PI/2*overshoot) * Math.sin(Math.PI/2*overshoot/steps*cntr);
             document.all.menu.style.top = -menuheight0 + (menuheight0+menutop0) / Math.sin(Math.PI/2*overshoot) * Math.sin(Math.PI/2*overshoot/steps*cntr);
             if (cntr<1){document.all.menu.style.visibility="visible";}
             cntr++;
             if (cntr<steps+1){setTimeout("menuflyin_ie4up()",20);} else {cntr=0;steps=20;overshoot=1.0;setTimeout("contentflyin_ie4up()",1000);}
             }

        function contentflyin_ie4up()
             {
             // document.all.content.style.left = -contentwidth0 + (contentwidth0+contentleft0) / Math.sin(Math.PI/2*overshoot) * Math.sin(Math.PI/2*overshoot/steps*cntr);
             document.all.content.style.top = -contentheight0 + (contentheight0+contenttop0) / Math.sin(Math.PI/2*overshoot) * Math.sin(Math.PI/2*overshoot/steps*cntr);
             if (cntr<1){document.all.content.style.visibility="visible";}
             cntr++;
             if (cntr<steps+1){setTimeout("contentflyin_ie4up()",20);} else {cntr=0;steps=20;overshoot=1}
             }
// --------------------- INTERNET EXPLORER 4up SECTION ENDS HERE ------------------------


// --------------------- NETSCAPE NAVIGATOR 4up SECTION STARTS HERE ------------------------
        function go_nav4up()
             {
             document.layers.emms.width=402;
             document.layers.emms.height=64;
             document.layers.pvp.width=70;
             document.layers.pvp.height=55;
             document.layers.menu.width=116;
             document.layers.menu.height=356;
             document.layers.navbar.width=116;
             document.layers.navbar.height=342;
             document.layers.content.width=550;
             document.layers.content.height=320;

             navbarleft0=parseInt(document.layers.navbar.left);
             navbartop0=parseInt(document.layers.navbar.top);
             navbarwidth0=parseInt(document.layers.navbar.width);
             navbarheight0=parseInt(document.layers.navbar.height);
             emmsleft0=parseInt(document.layers.emms.left);
             emmstop0=parseInt(document.layers.emms.top);
             emmswidth0=parseInt(document.layers.emms.width);
             emmsheight0=parseInt(document.layers.emms.height);
             pvpleft0=parseInt(document.layers.pvp.left);
             pvptop0=parseInt(document.layers.pvp.top);
             pvpwidth0=parseInt(document.layers.pvp.width);
             pvpheight0=parseInt(document.layers.pvp.height);
             menuleft0=parseInt(document.layers.menu.left);
             menutop0=parseInt(document.layers.menu.top);
             menuwidth0=parseInt(document.layers.menu.width);
             menuheight0=parseInt(document.layers.menu.height);
             contentleft0=parseInt(document.layers.content.left);
             contenttop0=parseInt(document.layers.content.top);
             contentwidth0=parseInt(document.layers.content.width);
             contentheight0=parseInt(document.layers.content.height);

             navbarimgwidth0=parseInt(document.layers.navbar.document.images.navbarimg.width);
             navbarimgheight0=parseInt(document.layers.navbar.document.images.navbarimg.height);
             loadingbarimgwidth0=parseInt(document.layers.loadingbar.document.images.loadingbarimg.width);

             steps=10;
             cntr=0;
             overshoot=1;
             setTimeout("loading_nav4up()",500);
             }

        function loading_nav4up()
             {
             document.layers.loadingbar.document.images.loadingbarimg.width = loadingbarimgwidth0 * parseInt(Math.sin(Math.PI/2/steps*cntr));
             if (cntr<1){document.layers.loadingbox.visibility="visible";document.layers.loadingbar.visibility="hidden";}
             cntr++;
             if (cntr<steps+1){setTimeout("loading_nav4up()",50);} else {setTimeout("hideloading_nav4up()",2000);}
             }

        function hideloading_nav4up()
             {
             document.layers.loadingbox.visibility="hidden";
             document.layers.loadingbar.visibility="hidden";
             cntr=0;steps=25;overshoot=1;setTimeout("navbardraw_nav4up()",1000);
             }

        function navbardraw_nav4up()
             {
             // document.layers.navbar.document.images.navbarimg.width = navbarimgwidth0 * Math.sin(Math.PI/2/steps*cntr);
             // document.layers.navbar.document.images.navbarimg.height = navbarimgheight0 * Math.sin(Math.PI/2/steps*cntr);
             document.layers.navbar.left = -navbarwidth0 + (navbarwidth0+navbarleft0) / Math.sin(Math.PI/2*overshoot)* Math.sin(Math.PI/2*overshoot/steps*cntr);
             document.layers.navbar.top = -navbarheight0 + (navbarheight0+navbartop0) / Math.sin(Math.PI/2*overshoot)* Math.sin(Math.PI/2*overshoot/steps*cntr);
             if (cntr<1){document.layers.navbar.visibility="visible";}
             cntr++;
             if (cntr<steps+1){setTimeout("navbardraw_nav4up()",35);} else {cntr=0;steps=20;overshoot=1.1;setTimeout("pvpflyin_nav4up()",1000);}
             }

        function pvpflyin_nav4up()
             {
             document.layers.pvp.left = -pvpwidth0 + (pvpwidth0+pvpleft0) / Math.sin(Math.PI/2*overshoot)* Math.sin(Math.PI/2*overshoot/steps*cntr);
             // document.layers.pvp.top = -pvpheight0 + (pvpheight0+pvptop0) / Math.sin(Math.PI/2*overshoot)* Math.sin(Math.PI/2*overshoot/steps*cntr);
             if (cntr<1){document.layers.pvp.visibility="visible";}
             cntr++;
             if (cntr<steps+1){setTimeout("pvpflyin_nav4up()",20);} else {cntr=0;steps=20;overshoot=1.1;setTimeout("emmsflyin_nav4up()",1000);}
             }

        function emmsflyin_nav4up()
             {
             document.layers.emms.left = -emmswidth0 + (emmswidth0+emmsleft0) / Math.sin(Math.PI/2*overshoot) * Math.sin(Math.PI/2*overshoot/steps*cntr);
             // document.layers.emms.top = -emmsheight0 + (emmsheight0+emmstop0) / Math.sin(Math.PI/2*overshoot) * Math.sin(Math.PI/2*overshoot/steps*cntr);
             if (cntr<1){document.layers.emms.visibility="visible";}
             cntr++;
             if (cntr<steps+1){setTimeout("emmsflyin_nav4up()",20);} else {cntr=0;steps=20;overshoot=1.1;setTimeout("menuflyin_nav4up()",1000);}
             }

        function menuflyin_nav4up()
             {
             // document.layers.menu.left = -menuwidth0 + (menuwidth0+menuleft0) / Math.sin(Math.PI/2*overshoot) * Math.sin(Math.PI/2*overshoot/steps*cntr);
             document.layers.menu.top = -menuheight0 + (menuheight0+menutop0) / Math.sin(Math.PI/2*overshoot) * Math.sin(Math.PI/2*overshoot/steps*cntr);
             if (cntr<1){document.layers.menu.visibility="visible";}
             cntr++;
             if (cntr<steps+1){setTimeout("menuflyin_nav4up()",20);} else {cntr=0;steps=20;overshoot=1.0;setTimeout("contentflyin_nav4up()",1000);}
             }

     function contentflyin_nav4up()
             {
             // document.layers.content.left = -contentwidth0 + (contentwidth0+contentleft0) / Math.sin(Math.PI/2*overshoot) * Math.sin(Math.PI/2*overshoot/steps*cntr);
             document.layers.content.top = -contentheight0 + (contentheight0+contenttop0) / Math.sin(Math.PI/2*overshoot) * Math.sin(Math.PI/2*overshoot/steps*cntr);
             if (cntr<1){document.layers.content.visibility="visible";}
             cntr++;
             if (cntr<steps+1){setTimeout("contentflyin_nav4up()",20);} else {cntr=0;steps=20;overshoot=1}
             }
// --------------------- NETSCAPE NAVIGATOR 4up SECTION ENDS HERE ------------------------


// --------------------- KONQUEROR SECTION STARTS HERE ------------------------
        function go_konqueror()
             {
             navbarleft0=parseInt(document.getElementById("navbar").style.left);
             navbartop0=parseInt(document.getElementById("navbar").style.top);
             navbarwidth0=parseInt(document.getElementById("navbar").style.width);
             navbarheight0=parseInt(document.getElementById("navbar").style.height);
             emmsleft0=parseInt(document.getElementById("emms").style.left);
             emmstop0=parseInt(document.getElementById("emms").style.top);
             emmswidth0=parseInt(document.getElementById("emms").style.width);
             emmsheight0=parseInt(document.getElementById("emms").style.height);
             pvpleft0=parseInt(document.getElementById("pvp").style.left);
             pvptop0=parseInt(document.getElementById("pvp").style.top);
             pvpwidth0=parseInt(document.getElementById("pvp").style.width);
             pvpheight0=parseInt(document.getElementById("pvp").style.height);
             menuleft0=parseInt(document.getElementById("menu").style.left);
             menutop0=parseInt(document.getElementById("menu").style.top);
             menuwidth0=parseInt(document.getElementById("menu").style.width);
             menuheight0=parseInt(document.getElementById("menu").style.height);
             contentleft0=parseInt(document.getElementById("content").style.left);
             contenttop0=parseInt(document.getElementById("content").style.top);
             contentwidth0=parseInt(document.getElementById("content").style.width);
             contentheight0=parseInt(document.getElementById("content").style.height);

             navbarimgwidth0=parseInt(document.getElementById("navbarimg").width);
             navbarimgheight0=parseInt(document.getElementById("navbarimg").height);
             loadingbarimgwidth0=parseInt(document.getElementById("loadingbarimg").width);

             steps=10;
             cntr=0;
             overshoot=1;
             setTimeout("loading_konqueror()",500);
             }

        function loading_konqueror()
             {
             document.getElementById("loadingbarimg").width = loadingbarimgwidth0 * parseInt(Math.sin(Math.PI/2/steps*cntr));
             if (cntr<1){document.getElementById("loadingbox").style.visibility="visible";document.getElementById("loadingbar").style.visibility="hidden";}
             cntr++;
             if (cntr<steps+1){setTimeout("loading_konqueror()",50);} else {setTimeout("hideloading_konqueror()",2000);}
             }

        function hideloading_konqueror()
             {
             document.getElementById("loadingbox").style.visibility="hidden";
             document.getElementById("loadingbar").style.visibility="hidden";
             cntr=0;steps=25;overshoot=1;setTimeout("navbardraw_konqueror()",1000);
             }

        function navbardraw_konqueror()
             {
             // document.getElementById("navbarimg").width = navbarimgwidth0 * Math.sin(Math.PI/2/steps*cntr);
             // document.getElementById("navbarimg").height = navbarimgheight0 * Math.sin(Math.PI/2/steps*cntr);
             document.getElementById("navbar").style.left = -navbarwidth0 + (navbarwidth0+navbarleft0) / Math.sin(Math.PI/2*overshoot)* Math.sin(Math.PI/2*overshoot/steps*cntr);
             document.getElementById("navbar").style.top = -navbarheight0 + (navbarheight0+navbartop0) / Math.sin(Math.PI/2*overshoot)* Math.sin(Math.PI/2*overshoot/steps*cntr);
             if (cntr<1){document.getElementById("navbar").style.visibility="visible";}
             cntr++;
             if (cntr<steps+1){setTimeout("navbardraw_konqueror()",35);} else {cntr=0;steps=20;overshoot=1.1;setTimeout("pvpflyin_konqueror()",1000);}
             }

        function pvpflyin_konqueror()
             {
             document.getElementById("pvp").style.left = -pvpwidth0 + (pvpwidth0+pvpleft0) / Math.sin(Math.PI/2*overshoot)* Math.sin(Math.PI/2*overshoot/steps*cntr);
             // documentgetElementById("pvp").style.top = -pvpheight0 + (pvpheight0+pvptop0) / Math.sin(Math.PI/2*overshoot)* Math.sin(Math.PI/2*overshoot/steps*cntr);
             if (cntr<1){document.getElementById("pvp").style.visibility="visible";}
             cntr++;
             if (cntr<steps+1){setTimeout("pvpflyin_konqueror()",20);} else {cntr=0;steps=20;overshoot=1.1;setTimeout("emmsflyin_konqueror()",1000);}
             }

        function emmsflyin_konqueror()
             {
             document.getElementById("emms").style.left = -emmswidth0 + (emmswidth0+emmsleft0) / Math.sin(Math.PI/2*overshoot) * Math.sin(Math.PI/2*overshoot/steps*cntr);
             // document.getElementById("emms").style.top = -emmsheight0 + (emmsheight0+emmstop0) / Math.sin(Math.PI/2*overshoot) * Math.sin(Math.PI/2*overshoot/steps*cntr);
             if (cntr<1){document.getElementById("emms").style.visibility="visible";}
             cntr++;
             if (cntr<steps+1){setTimeout("emmsflyin_konqueror()",20);} else {cntr=0;steps=20;overshoot=1.1;setTimeout("menuflyin_konqueror()",1000);}
             }

        function menuflyin_konqueror()
             {
             // document.getElementById("menu").style.left = -menuwidth0 + (menuwidth0+menuleft0) / Math.sin(Math.PI/2*overshoot) * Math.sin(Math.PI/2*overshoot/steps*cntr);
             document.getElementById("menu").style.top = -menuheight0 + (menuheight0+menutop0) / Math.sin(Math.PI/2*overshoot) * Math.sin(Math.PI/2*overshoot/steps*cntr);
             if (cntr<1){document.getElementById("menu").style.visibility="visible";}
             cntr++;
             if (cntr<steps+1){setTimeout("menuflyin_konqueror()",20);} else {cntr=0;steps=20;overshoot=1.0;setTimeout("contentflyin_konqueror()",1000);}
             }

        function contentflyin_konqueror()
             {
             // document.getElementById("content").style.left = -contentwidth0 + (contentwidth0+contentleft0) / Math.sin(Math.PI/2*overshoot) * Math.sin(Math.PI/2*overshoot/steps*cntr);
             document.getElementById("content").style.top = -contentheight0 + (contentheight0+contenttop0) / Math.sin(Math.PI/2*overshoot) * Math.sin(Math.PI/2*overshoot/steps*cntr);
             if (cntr<1){document.getElementById("content").style.visibility="visible";}
             cntr++;
             if (cntr<steps+1){setTimeout("contentflyin_konqueror()",20);} else {cntr=0;steps=20;overshoot=1}
             }
// --------------------- KONQUEROR SECTION ENDS HERE ------------------------

