var gAutoPrint = true; // Flag for whether or not to automatically call the print function

function printSpecial(){

	if (document.getElementById != null)
	{
		var html = '<HTML>\n<HEAD>\n';

		if (document.getElementsByTagName != null)
		{
			var headTags = document.getElementsByTagName("head");
			if (headTags.length > 0)
				html += headTags[0].innerHTML;
		}
		html += '\n</HE' + 'AD><style>BODY{background:#FFFFFF;}</style>\n<BODY bgcolor=#FFFFFF>\n';
		html += '<table  border="0" cellspacing="0" cellpadding="0"><tr><td><img src="/print/header.gif" width="600" height="84"></td></tr></table>'
		html += '\n<table width="640" border="0" cellspacing="0" cellpadding="0" bgcolor="#FFFFFF"><tr><td>\n';

		var printReadyElem = document.getElementById("printReady");
		
		if (printReadyElem != null)
		{
				html += printReadyElem.innerHTML;
		}
		else
		{
			alert("Could not find the printReady section in the HTML");
			return;
		}
		html += '\n</td></tr></table><br>\n';
		html += '<table  border="0" cellspacing="0" cellpadding="0" class="text"><tr valign="top"><td>'
		html += '<font style="color:#98151D;font-size:10px;font-family:Verdana, Arial, Helvetica, sans-serif"><strong>www.juranet.ch - contact@juranet.ch</strong><br>'
		html += 'Editeur : Créa-com - Eco-Centre - Les Places 38 - CH - 2855 Glovelier - contact@crea-com.ch - tél. +41 32 427 04 61</font>'
		html += '</td></tr></table>'
		html += '\n</BO' + 'DY>\n</HT' + 'ML>';
		
		var printWin = window.open("","printSpecial");
		printWin.document.open();
		printWin.document.write(html);
		hidePrintLink = printWin.document.getElementById("PrintLink");
		if (hidePrintLink != null)
		{
			hidePrintLink.innerHTML = "" ;
		}
		
		printWin.document.close();
		if (gAutoPrint)
			printWin.print();
	}
	else
	{
		alert("Sorry, the print ready feature is only available in modern browsers.");
	}
}
