// JavaScript Document

d=document;

function showHide(elementid){ 
  if (document.getElementById(elementid).style.display == 'none'){ 
    document.getElementById(elementid).style.display = '';
  } else { 
    document.getElementById(elementid).style.display = 'none'; 
  } 
}

function launchPlayer(messageID){
	if(playerWin){
		playerWin.close();
	}
	
	var playerWin=window.open('/media_player.asp?messageID=' + messageID,playerWin,'width=550,height=400,toolbar=false,resizable=false,menubar=false,scrollbars=false,status=false');
	//return true;
}


function killAnnounce(){
  d.getElementById('fullscreen').style.display='none'
  d.getElementById('screen').style.display='none'
}

/* Functions for downloading media */
/* Chuck Boyer 4/20/2005 *

/* function urlencodes a string */
function URLencode(sStr) {
	return escape(sStr).replace(/\+/g, '%2C').replace(/\""/g,'%22').replace(/\'/g, '%27');
}
				
/* function launches the file download popup window with appropriat parameters */				
function fileDownload(filePath){
	filePath = URLencode(filePath);
	var fileDownloader=window.open('/file_download_launch.asp?filePath=' + filePath,'fileDialog','width=400,height=300,toolbar=false,resizable=false,menubar=false,scrollbars=false,status=false');
}

/* End Download media functions */