function showcontentarea(id){
	//reset the initial color load
	if (id ==1){
	document.getElementById('menuitem1').style.color='#000000';	
	}else{
	document.getElementById('menuitem1').style.color='#d34c16';	
	}
	
	
	for(i=1;i<5; i++) {		
		if(i==id){
			document.getElementById('tab'+i).style.display="block";
			document.getElementById('menuitem'+i).className='menuitemOn';
		} else {
			document.getElementById('tab'+i).style.display="none";
			document.getElementById('menuitem'+i).className='menuitemOff';
			
		}
	}
}

function printPD(){
	//window.print();
//}
//function printContent(){
   //str=document.getElementById(id).innerHTML
   newwin=window.open('','printwin','left=100,top=100,scrollbars=yes,width=600,height=600')
   newwin.document.open();
   newwin.document.write('<html><head><link rel="stylesheet" type="text/css" href="http://clients.crc-inc.com/crc_dev/wlec_live_conf/program_details_print.css" /></head>');
//   newwin.document.write('<title>Live Conference Details</title>\n')
   newwin.document.write('</HEAD>\n')
   newwin.document.write('<BODY>\n')
   
	 for(i=1;i<5; i++) {
		//if(i==id){
		//	document.getElementById('tab'+i).style.display="block";
			str=document.getElementById('tab'+i).innerHTML
			newwin.document.write(str)
		}
	 
	 newwin.document.write(str)
   newwin.document.write('<hr />');
   /*newwin.document.write('<a href="#" onClick="window.print();">Print</a>')*/
//   newwin.document.write('<a href="javascript:window.close();">Close Window</a></body></html>');
  /* newwin.document.write('</HTML>\n')*/
   newwin.document.close();
   newwin.print();
	 newwin.close();
}
