function newsletterSignup(){
	window.open('', 'newsletterwin', 'width=460,height=220,scrollbars=no,resizable=no');
}

function playit()
		{
		    if (navigator.appName == "Netscape")
				{
				if (document.wmpPlayer.GetReadyState() > 3)
  				document.wmpPlayer.Play();
				}
			else
				{
				if (document.wmpPlayer.ReadyState > 3)
					document.wmpPlayer.Play();
				}
		}

	function pauseit()
		{
		    if (navigator.appName == "Netscape")
				{
					if (document.wmpPlayer.GetPlayState() == 2)
          document.wmpPlayer.Pause();
				}
			else
				{
					if (document.wmpPlayer.PlayState == 2)
						document.wmpPlayer.Pause();
				}
		}
	function stopit()
		{
		    if (navigator.appName == "Netscape")
				{
					if (document.wmpPlayer.GetPlayState() == 2)
          document.wmpPlayer.Stop();
				}
			else
				{
					if (document.wmpPlayer.PlayState == 2)
						document.wmpPlayer.Stop();
				}
		}


function openWindow(sel, restore){
    if (sel.selectedIndex > 0) {
        if ((sel.options[sel.selectedIndex].value).indexOf("http://") != -1) {
            window.open(sel.options[sel.selectedIndex].value);
        }
        else {
            window.location = sel.options[sel.selectedIndex].value;
        }
    
        if (restore) {
            sel.selectedIndex = 0;
        }
    }
}

function toggle (targetId) {
	if (document.getElementById) {
		var target = document.getElementById( targetId );
			if (target.style.display == "none") {
				target.style.display = "";
			} else {
				target.style.display = "none";
			}
	}
}

