function PrintThisPage() 
{ 
   var sOption="toolbar=yes,location=no,directories=yes,menubar=yes,"; 
       sOption+="scrollbars=yes,width=750,height=600,left=100,top=25"; 

   var sWinHTML = document.getElementById('startContent').innerHTML; 
   
   var winprint=window.open("","",sOption); 
       winprint.document.open(); 
	   winprint.document.write('<html><head><title>Centre for Conflict Resolution International</title><link href="http://www.orgpulse.com/common/modern.css" type="text/css" rel="stylesheet"><style>body { background-color: #FFFFFF }</style></head><body><p><img src="http://www.orgpulse.com/images/logo.gif" alt="Centre for Conflict Resolution International" width="216" height="77" border="0"></p><hr size="1">');
	   winprint.document.write(sWinHTML);
	   winprint.document.write('<hr size="1"><p align="center"><small>&copy; 2004 CCR International.  All Rights Reserved.</small></p>');
	   winprint.document.write('</body></html>'); 
       winprint.document.close(); 
       winprint.focus(); 
}		

function OpenEmailWindow(urlx) {
	popupEmailWin = window.open(urlx, 'send', 'scrollbars,width=475,height=575,left=380,top=50,noresize');

}
