// JavaScript Document

function printer() {

if(navigator.appName=='Microsoft Internet Explorer')
	{
	document.write('<a href="javascript:parent.imprim.focus(); window.print()" title="Imprimer Offre speciale perfect car wash">Imprimer l\'offre</a>');
	document.write('<iframe src="imgtoprint.html" style="width: 0; height: 0" id="imprim" name="imprim"></iframe>');
	}
else if(navigator.appName=='Netscape')
	{
	document.write('<a href="javascript:parent.imprim.print();">Imprimer l\'offre</a>');
	document.write('<iframe src="imgtoprint.html" style="width: 0; height: 0; visibility: hidden" id="imprim" name="imprim"></iframe>');
	}
else
	{
	document.write('');
    }
}
