
function fix_ie()
{
    if(document.all)
    {
        //Fix spacing between Child Find Logo and copyright info.
        document.getElementById("bottomSection1").style.marginTop = "10px";
        document.getElementById("bottomSection2").style.marginTop = "10px";
        document.getElementById("bottomSection3").style.marginTop = "10px";
        document.getElementById("bottomSection4").style.marginTop = "10px";
    }
}

function toggle_img(id, src)
{
	document.getElementById(id).src = src;
}