var isNav4, isNav6, isIE4;

function setBrowser()
{if (navigator.appVersion.charAt(0) == "4")
    {if (navigator.appName.indexOf("Explorer") >= 0)
        {isIE4 = true;}
        else
        {isNav4 = true;}
    }else if (navigator.appVersion.charAt(0) > "4")
    {isNav6 = true;}
}

function setIdProperty( id, property, value )
{if (isNav6)
    {var styleObject = document.getElementById( id );
        if (styleObject != null)
        {
         styleObject = styleObject.style;
         styleObject[ property ] = value;
        }
    }
    else if (isNav4)
    {document[id][property] = value;
    }else if (isIE4)
    {document.all[id].style[property] = value;
    }
}

function showDiv(newBlurb)
{
    setIdProperty( newBlurb, "display", "block" );

	whatBlurb=newBlurb;
}


function showDivInline(newBlurb)
{
    setIdProperty( newBlurb, "display", "inline" );

	whatBlurb=newBlurb;
}



function hideDiv(newBlurb)
{
    setIdProperty( newBlurb, "display", "none" );

	whatBlurb=newBlurb;
}



function showDiv2(newBlurb)
{
    setIdProperty( newBlurb, "display", "inline" );

	whatBlurb=newBlurb;
}



var whatBlurb ='normal';
setBrowser();

var repeat ='repeat';
var talking ='talking';
var not_talking ='not_talking';
var sendmovie ='sendmovie';
var sendmovie ='icon';


function whatsItcalled(){
document.write("<a href=\"javascript://\" class=\"wic\" onmouseover=\"return escape('Digital Interactive Video');\">DIV<\/a>");
}

function whatsItcalledS(){
document.write("<a href=\"javascript://\" class=\"wic\" onmouseover=\"return escape('Digital Interactive Videos');\">DIV's<\/a>");
}
