<!--
	//needs to change to selective printing
	function printWindow() {
   		window.print();
	}

	function showMail(sField) {
		if (document.getElementById('mailForm2').style.display == 'none') 
		{
			document.getElementById('mailForm2').style.display = 'block';
			setFocus(sField);
		} 
		else 
		{ 
			document.getElementById('mailForm2').style.display = 'none'; 
		}
	}
	
	function setFocus(sField) {
		if (document.forms.length > 0) {
			if (document.forms[0]) {
				var oForm = document.forms[0];
				var oField = eval('oForm.' + sField);
				if (oField) {
					oField.focus();
				}				
			}
		}	
	}
	
	function ensureEAFOpen() {
		//Ensures the Email a Friend is open
		if (document.getElementById('sendfriend').style.display == 'none') 
		{
			document.getElementById('sendfriend').style.display = 'block';
		} 
	}
	
	function showETFSuccess() {
		if (document.getElementById('mailToFriendSuccess').style.display == 'none') 
		{
			document.getElementById('mailToFriendSuccess').style.display = 'block';
		} 
	}
	
//-->
