
function PrintThisPage() 
{ 
	var sOption="toolbar=yes,location=no,directories=yes,menubar=yes,"; 
		sOption+="scrollbars=1, width=750, height=600,left=100,top=25"; 

	var titleHTML = "";
	var sWinHTML = document.getElementById('contentstart').innerHTML;
	if (document.getElementById('printTitle'))
	{
		titleHTML = document.getElementById('printTitle').innerHTML; 	
	}
		
	var winprint=window.open("","",sOption); 
		winprint.document.open(); 
		winprint.document.write('<html><head>');
		winprint.document.write('<title>');
		winprint.document.write(titleHTML);
		winprint.document.write('</title><LINK href=\"http://seechange.businessroundtable.org/Helper/Styles/SEE.css\" rel=Stylesheet></head><body>'); 
		winprint.document.write('<IMG src=\"http://seechange.businessroundtable.org/images/BRT_logo_site.gif\">');		
		winprint.document.write('<div  class=\"MainCopy\">');
		winprint.document.write(sWinHTML); 
		winprint.document.write('<p>');
		//winprint.document.write('This page was printed from: <i>' + document.URL + '</i>');
		winprint.document.write('<hr noshade>');
		winprint.document.write('</div>');
		winprint.document.write('</body></html>'); 
		winprint.document.close(); 
		winprint.focus(); 
}

function sendToLogin(){
    window.location = "../Login.aspx"
}

function verifyLogout() {

	var answer = confirm ("Are you sure you want to log out? Your changes have been saved, but will only be available to the public after you have submitted them from the Entry Preview.")
	if (answer)
	document.location = '../Logout.aspx';
	else
	return;
}

function ToggleGoal(toggleDiv)
{
	if (document.getElementById(toggleDiv).style.display == 'block')
	{
		document.getElementById(toggleDiv).style.display = 'none';
		document.getElementById('h' + toggleDiv).innerText = 'Show Details';
		document.getElementById('imgArrow' + toggleDiv).src = '../images/arrow_right.gif';
	}
	else if (document.getElementById(toggleDiv).style.display == 'none')
	{
		document.getElementById(toggleDiv).style.display = 'block';
		document.getElementById('h' + toggleDiv).innerText = 'Hide Details';
		document.getElementById('imgArrow' + toggleDiv).src = '../images/arrow_down.gif';
	}
}

function MM_openBrWindow(theURL,winName,features) { 
  window.open(theURL,winName,features); 
}

function OpenVideo(target) {
    var newwin = window.open("/VidPlayer.aspx?fid=" + target + "&tid=1","set","width=400,height=427");
}

function OpenAudio(target) {
    var newwin = window.open("/VidPlayer.aspx?fid=" + target + "&tid=2","set","width=400,height=427");
}
