var gAutoPrint = true; 

function printSpecial()
 {
	if (document.getElementById != null)
	 {
		var html = '<HTML><HEAD>';
		html += '<link href="css/relem.css" rel="stylesheet" type="text/css">';

//		if (document.getElementsByTagName != null)
//		 {
//			var headTags = document.getElementsByTagName("head");
//			if (headTags.length > 0)
//				html += headTags[0].innerHTML;
//		 }

		html += '</HE' + 'AD><BOD' + 'Y>';
		var printReadyElem = document.getElementById("printReady");
		
		if (printReadyElem != null)
		 {
				html += printReadyElem.innerHTML;
		 }
		else
		 {
			alert("Az oldalnak nem létezik nyomtatható verziója!");
			return;
		 }
			
		html += '</BO' + 'DY></HT' + 'ML>';
		
		var printWin = window.open("","printSpecial","width=600, height=400, menubar=no, toolbar=no, location=no, status=no, scrollbars=yes");

		printWin.document.open();
		printWin.document.write(html);
		printWin.document.close();

		if (gAutoPrint)
			printWin.print();
	 }
	else
	 {
		alert("Az Ön böngészője sajnos nem támogatja a nyomtatási funkciót!");
	 }
 }
