/*************
* Print tool
*************/
	function showPrint()
	{
		var html = '<HTML><HEAD>';
		var printLayer = document.getElementById("content");
		var headTags = document.getElementsByTagName('head');
		html += headTags[0].innerHTML;
		html += '</HE' + 'AD><BODY style="background-image:none; background-color:white;">';
		html += printLayer.innerHTML;
		html += '</BO' + 'DY></HT' + 'ML>';
		var newWindow = window.open("","printWindow", "width=700,location=no,toolbar=no,menubar=no");
		newWindow.document.open();
		newWindow.document.write(html);
		newWindow.document.close();
		newWindow.print();
	}

function AbrirBayerResponde()
{
window.open('http://www.bayer.es/MAIL/BAYERRES.nsf/BayerResponde_Pregunta?OpenForm&Origen=http://www.bayerpolimeros.es/','BayerResponde','directories=0,height=500,hotkeys=no,menubar=no,location=no,menubar=no,resizable=no,scrollbars=no,status=no,titlebar=yes,toolbar=no,width=630')
}