<!--

//*************************************************************************************************
//*** DESCRIPTION:
//*** This scripts outputs a link to the Email this Page popup.
//*** 
//*** AUTHOR:
//*** Juan F. Carpio
//*** 
//*** CREATED:
//*** 2/21/2006
//*** 
//*** MODIFICATIONS *********************************************************************
//*** DATE				REVISED BY				DETAILS
//*** 2006-08-16		Juan F Carpio			Removed "/SC3" from link and dynamically generated 
//***											protocol and host for link.
//*** 2009-08-03		Infosys				Changes for Web Accessibility
//*** 2009-09-22		Infosys				Changes for Web Accessibility Phase C
//*************************************************************************************************

var httpHost = "http://" + window.location.host;
var locationURL = httpHost + window.location.pathname;
var locationTitle = document.title;

var etp = '&nbsp;&nbsp; | &nbsp;&nbsp;&nbsp;';
/* Start - MOD - WCAG0002 */
/* Start - MOD - WCAG0003 */
etp    += '<a title="Email this page opens in a new pop-up" href="javascript:EmailPagePopup(\'' + httpHost + '/_SharedConnected-AdminOnly/email_this_page/email?requrl=' + locationURL + '&reqtitle=' + encodeURI(locationTitle) + '\', 400, 480); void 0;" ';
/* End - MOD - WCAG0003 */
/* End - MOD - WCAG0002 */
etp    += 'onmouseover="status=\'Email this page\';return true;" onmouseout="status=\'\';return true;">';
etp	   += '<img height="9" width="14" alt="" src="/images/icons/email.gif" border="0"> E-mail this page</a>';

document.write(etp);
													
//--> 