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 = '<html>\n<head>\n<title>Helgenęs Sparekasse</title>\n';
		html += '<LINK href="css/kasse.css" type=text/css rel=stylesheet>';
		html += '\n</he' + 'ad>\n<body>\n';
		html += '<img height="100" src="images/logo.jpg" border="0"><br>'
		var printReadyElem = document.getElementById("printReady");
		
		if (printReadyElem != null)
		{
				html += printReadyElem.innerHTML;
		}
		else
		{
			alert("Intet at printe");
			return;
		}
			
		html += '\n\n<br><img src="images/adresse.gif" border="0"></bo' + 'dy>\n</ht' + 'ml>';
		
		var printWin = window.open("","printWin","");
		printWin.document.open();
		printWin.document.write(html);
		printWin.document.close();
		printWin.print();
	}
	else
	{
		alert("Opdater venligst din browser...");
	}
}
