
// For Dropdown Menus in IE

<!--//--><![CDATA[//><!--
startList = function() {
	if (document.all&&document.getElementById) {
		navRoot = document.getElementById("navL");
		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", "");
				}
			}
		}
		navRoot2 = document.getElementById("navR");
		for (i=0; i<navRoot2.childNodes.length; i++) {
			node2 = navRoot2.childNodes[i];
			if (node2.nodeName=="LI") {
				node2.onmouseover=function() {
					this.className+=" over";
				}
				node2.onmouseout=function() {
					this.className=this.className.replace(" over", "");
				}
			}
		}		
	}
}
window.onload=startList;


//--><!]]>

function toggle(targetId){
  if (document.getElementById){
               target = document.getElementById( targetId );
                       if (target.style.display == "none"){
                               target.style.display = "";
                       } else {
                               target.style.display = "none";
                       }
        }
}



/* popups/supertell components 
---------------------------------------------------

function popupSupertell(supertellId, mailerType, pageTitle, pageUrl)
    {
      url = 'http://www.supertell.com/supertell.php?sid=' + supertellId + 
             '&mt=' + mailerType + '&title=' + pageTitle + '&url=' + pageUrl;

      stWindow = window.open(url,
                             'superTell',
                             'width=660,height=700,status=yes,menubar=no,' +
                             'toolbar=no,scrollbars=yes,resizable=yes');
      stWindow.focus();
    }
	 */
function popupJoin()
{
  window.open("elist.php",
              "windowJoin",
              "width=450,height=350,status=yes,menubar=no,toolbar=no,scrollbars=yes,resizable=yes");
}	

function popupMedia()
{
  window.open("media-player.php",
              "windowMedia",
              "width=650,height=400,status=yes,menubar=no,toolbar=no,scrollbars=yes,resizable=yes");
}	