<!--
function printerfriendlyformat(){
var content=" " //gather all the content for the printer friendly form
var browserName=navigator.appName; 
content="<html><head>";
content += "<title>Printer Friendly Format Page</title>";
content += "<link rel='stylesheet' type='text/css' href='http://www.geafiltration.com/Portuguese/style/geaPTprint.css'>";
content += "</head><body>";
content += "<div class='content'>";
	content += showTopLogos () + "<p>&nbsp;</p>";
	content += "<div class='borderMainHeading'>" + document.getElementById("printHeading").innerHTML + "</div>";
	content += "<div id='paddFirstPara'>" + document.getElementById("printPageContent").innerHTML + "</div>";
	content += "<div id='contentBottNav'><div style='margin-top:20px; padding-top:20px'>";
		content += "<div class='CompanyFooter'><strong>GEA Filtration</strong> &bull; Hudson, WI 54016, US &bull; Telefone: + 1-715-386-9371 &bull; Telefax: + 1-715-386-9376 &bull; Email: gea.filtration@geagroup.com</div>";
		content += "<div class='CompanyFooter'><strong>GEA Filtration</strong> &bull; Skanderborg, Denmark &bull; Telefone:+ 45 70 15 2200 &bull; Telefax:+ 45 70 15 2244 &bull; Email: gea.filtration@geagroup.com</div>";
		content += "<div class='CompanyFooter'><strong>GEA Filtration</strong> &bull; Ettlingen, Germany &bull; Telefone: +49-7243 7050 &bull; Telefax: + 49-7243 7053 30 &bull; E-mail: gea.filtration@geagroup.com</div>";
	content += "</div></div>";
content += "</div>";
winWidth=screen.width-100; 
winTop=screen.height-400; 
winTop=0; 
winLeft=15; 
//new window is created.
detailsWindow=window.open( " ", 'Print', 'dependent,toolbar=yes,scrollbars=yes,menubar=yes,innerheight=280,innerwidth=400,width=' + winWidth + ',left=' + winLeft + ',top=' + winTop + ''); 
detailsWindow.document.write(content);
detailsWindow.moveTo(winLeft,winTop);
detailsWindow.focus();
detailsWindow.document.close();
if(browserName =="Microsoft Internet Explorer" ){
detailsWindow.print();
	 }
content="</body></html>";
}

function showTopLogos () {
var logoHTML;
logoHTML="<table width='575' border='0' cellspacing='0' cellpadding='0'><tr valign='bottom'>";
	logoHTML=logoHTML + "<td width='214'><img src='http://www.geafiltration.com/images/GEA_Filt.jpg' width='214' height='20' alt='GEA Filtration' title='GEA Filtration' /></td>"
	logoHTML=logoHTML + "<td><img src='http://www.geafiltration.com/images/spacer.gif' width='100' height='5' /></td>";
	logoHTML=logoHTML + "<td width='155'><img src='http://www.geafiltration.com/images/GEA_logo.jpg' width='155' height='48' alt='GEA Logo' title='GEA Logo' /></td>";
logoHTML=logoHTML + "</tr></table>";
return logoHTML;
}

function clearSearchQuery (fld) {
	if (fld.defaultValue == fld.defaultValue) {
		fld.value="";
	}
}
//-->

