﻿// JScript File
function popVideoWin(url)
{
    window.open(window.root + url, '_blank', 'height=360, width=480, top=100, left=100, titlebar=0, scrollbars=0, location=0, status=0, menubar=0,');
}

function popVideoWinSmall(url)
{
    window.open(window.root + url, '_blank', 'height=360, width=480, top=100, left=100, titlebar=0, scrollbars=0, location=0, status=0, menubar=0,');
}

function openWin( windowURL, windowName, windowFeatures) 
{
     window.open( windowURL, windowName, windowFeatures ) ;
}

function exitSite(destination)
{
	openWin(window.root + 'util/exitsite.aspx?url=' + destination ,'pop_up','width=600,height=425,scrollbars=auto');
}

function interstitial(destination)
{
	openWin(window.root + 'util/interstitial.aspx?url=' + destination ,'pop_up','width=500,height=300,scrollbars=auto');
}


/*
startList = function(){
    if (document.all&&document.getElementById){
        navRoot = document.getElementById("mainNav");
        for (i=0; i<navRoot.childNodes.length; i++){
            node = navRoot.childNodes[i];
            if (node.nodeName=="LI") {
                node.onmouseover=function() 
                {this.className+=" over";}
                  node.onmouseout=function() 
                {this.className=this.className.replace(" over", "");}
            }}}}
window.onload=startList;
*/

