﻿function onHoverIFrameItem( Owner )
{
    if ( Owner.value != 1 )
    {
        Owner.style.borderColor = "#FF9C21";
    }
    else
    {
        Owner.style.borderColor = "#787878";
    }
}
function onHoverOutIFrameItem( Owner )
{
    Owner.style.borderColor = "#787878";
}

function toggleIFrameVisible( Owner, IFrame, szURLToShow )
{
    if ( Owner.value != 1 )
    {
        Owner.value = 1;
        //#545454 url(nottoggled.png) no-repeat left center
        Owner.style.background = "#545454 url(style/toggled.png) no-repeat left center";
        
        IFrame.src = szURLToShow;
        IFrame.style.height = "100%";
        IFrame.style.visibility = "visible";
    }
    else
    {
        Owner.value = 0;
        //#545454 url(nottoggled.png) no-repeat left center
        Owner.style.background = "#545454 url(style/nottoggled.png) no-repeat left center";
        
        IFrame.style.height = "0px";
        IFrame.style.visibility = "hidden";
    }
    
    Owner.style.borderColor = "#787878";
}
