<!--
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.gea-niro.com.mx/style/geaESprint.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 Process Engineering S.A de C.V.</strong><br /> Av. Lomas Verdes # 791 piso 4 &bull; Jardines de Satélite, Naucalpan &bull; CP 53129 Edo. de México, México<br /> Tel.: (52) 55-26251600 &bull; Fax: (52) 55-53439923</div></div></div></div>";
winWidth=screen.width-100; 
winTop=screen.height-200; 
winTop=0; 
winLeft=15; 
//new window is created.
detailsWindow=window.open( " ", 'Print', 'dependent,toolbar=yes,scrollbars=yes,menubar=yes,innerheight=400,innerwidth=500,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='155'><img src='http://www.gea-niro.com.mx/images/GEA_logo.jpg' width='155' height='48' alt='GEA Logo' title='GEA Logo' /></td>";
logoHTML=logoHTML + "<td><img src='http://www.gea-niro.com.mx/images/spacer.gif' width='100' height='5' /></td>";
logoHTML=logoHTML + "<td width='214'>"
logoHTML=logoHTML + "<img src='http://www.gea-niro.com.mx/images/GPE_logo2.jpg' width='340' height='20' alt='GEA Process Engineering S.A de C.V.' title='GEA Process Engineering S.A de C.V.' /></td>"
logoHTML=logoHTML + "</tr></table>";
return logoHTML;
}

function clearSearchQuery (fld) {
	if (fld.defaultValue == fld.defaultValue) {
		fld.value="";
	}
}
//-->

