<!--
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.barr-rosin.com/fr/style/printstylesfrbr.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 Barr-Rosin</strong><br /> GEA Canada Inc. &bull; 92 Pr&eacute;vost Street &bull; Boisbriand, Québec &bull; J7G 2S2 &bull; Canada <br /> Tel: +1(450) 437-5252 &bull; Email: sales.barr-rosin.ca@geagroup.com</div>";
		content += "<div class='CompanyFooter'><strong>GEA Barr-Rosin</strong><br /> 1880 Country Farm Drive &bull; Naperville, Illinois 60563 &bull; USA<br /> Tel: 630-369-8100 &bull; Fax: 630-548-8370 &bull; E-mail: sales.barr-rosin.ca@geagroup.com</div>";
		content += "<div class='CompanyFooter'><strong>GEA Barr-Rosin</strong><br /> GEA Process Engineering Ltd. &bull; 48 Bell Street &bull; Maidenhead, Berkshire &bull; SL6 1BR &bull; United Kingdom <br /> Tel: +44(0) 1628 641 700 &bull; Email: sales.barr-rosin.uk@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='155'><img src='http://www.barr-rosin.com/images/GEA_logo.jpg' width='155' height='48' alt='GEA Logo' title='GEA Logo' /></td>";
logoHTML = logoHTML + "<td><img src='http://www.barr-rosin.com/images/spacer.gif' width='100' height='5' /></td>";
logoHTML = logoHTML + "<td width='214'>"
logoHTML = logoHTML + "<img src='http://www.barr-rosin.com/gr/images/barr-rosin.jpg' width='214' height='20' alt='GEA Barr-Rosin' title='GEA Barr-Rosin' /></td>"
logoHTML = logoHTML + "</tr></table>";
return logoHTML;
}

function clearSearchQuery (fld) {
	if (fld.defaultValue == fld.defaultValue) {
		fld.value="";
	}
}
//-->

