﻿// JScript File

function popItScroll(theLink)
{ 
	window.open(theLink,null,'height=800,width=700,scrollbars=yes,resizable=yes'); 	
}
function showIt(theBox)
{
    if(theBox.style.display=="")
    {
        theBox.style.display="none";
    }
    else
    {
        theBox.style.display="";   
    }
}
function toggleIt(theBox)
{
    if(theBox.style.display=="none")
    {
        new Effect.Appear(theBox);
    }
    else
    {
        new Effect.Fade(theBox);   
    }
}
window.onload  =function()
                {
                    changeDiv(); 
                    document.getElementById("stopanimate").value=0;
                }

funcall(1);        

