function SendThisToAFriend(url) {
	popupEmailWin = window.open(url,'send','scrollbars,width=440,height=435,left=380,top=50,noresize')
}

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

   var sHeaders = document.getElementById('print-headers').innerHTML;
   var sContent = document.getElementById('print-content').innerHTML;
   //var sSidebar = document.getElementById('print-sidebar').innerHTML;
   var sFooter = document.getElementById('print-footer').innerHTML;
   
   var winprint=window.open("","",sOption); 
	   winprint.document.open(); 
	   winprint.document.write('<html><head><title>The | Marketing | Works</title><link href=common/tmw.css rel=Stylesheet><style><!-- body { margin: 12px 0; padding: 0; } --></style></head><body leftmargin=0 topmargin=0 marginheight=0 marginwidth=0>'); 
	   winprint.document.write('<table border=0 cellspacing=0 cellpadding=0 width=100%><tr><td width=12><img src=images/spacer.gif height=1 width=12></td><td valign=top>');
	   winprint.document.write(sHeaders);
	   winprint.document.write(sContent);
	   winprint.document.write('</td><td width=12><img src=images/spacer.gif height=1 width=12></td>');
	   //winprint.document.write(sSidebar);
	   winprint.document.write('</table>'); 
	   winprint.document.write('<div align="center">');
	   winprint.document.write(sFooter);
	   winprint.document.write('</div></body></html>'); 
	   winprint.document.close(); 
	   winprint.focus(); 
}

