var gAutoPrint = true; 
function printSpecial() 
{ 
if (document.getElementById != null) 
{ 
var html = '<HTML><HEAD>'; 
if (document.getElementsByTagName != null) 
{ 
var headTags = document.getElementsByTagName("head"); 
if (headTags.length > 0) 
html += headTags[0].innerHTML; 
} 
html += '</HE' + 'AD><BOD' + 'Y class="printext" leftmargin="30" style="background-color:#ffffff;" topmargin="30" marginwidth="30" marginheight="30" rightmargin="30" bottommargin="30">'; 
var printreadyElem = document.getElementById("printready"); 

if (printreadyElem != null) 
{ 
html += printreadyElem.innerHTML; 
} 
else 
{ 
alert("Az oldalnak nem létezik nyomtatható verziója! Could not find the print version of this page"); 
return; 
} 

html += '<script type=text/javascript>document.print();</'+'script></BO' + 'DY></HT' + 'ML>'; 

var printWin = window.open("","printSpecial","width=600, height=400, menubar=1, toolbar=1, location=0,status=0,scrollbars=1"); 
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! Sorry, the print ready feature is only available in modern browsers."); 
} 
} 
