//***************************************************************************
// Add a call to addPrinterFriendlyLogo during the body onload event if the
//  page is being built in the printer friendly mode.
//  addPrintFriendly() inserts the corporate logo at the top of the whitespace
//  in lieu of this being built by the portal framework.
//***************************************************************************
if (location.search.toLowerCase().indexOf('printerfriendly=true') >= 0){
	STA4JS.EventManager.addEvent(window, 'load', addPrintFriendlyLogo);
}
function addPrintFriendlyLogo(){
	var divWhitespace = document.getElementById('whitespaceContent');
	divWhitespace.innerHTML = "<div id='bannerLogoContainer' style='margin:15px 0'><img src='http://www.travelerscanada.ca/en/PortalWebResource.axd?n=/theme/ITU/images/PL-Travelers-Portal-Logo.gif' border='0' /></div>" + divWhitespace.innerHTML;
}

/* Email Page in French - overwrite portal function */
function emailFrPage() 
{
    window.location = "mailto:" + "?subject=Information de Travelers" + "&body=Cette information pourrait vous %EAtre utile.  Vous pouvez la consulter au :  " + URLEncode(window.location) + ".";
}
