function printform(content) {
 top.consoleRef=window.open('Nyomtatható változat','myconsole','width=720,height=540'
   +',menubar=0'
   +',toolbar=0'
   +',status=0'
   +',scrollbars=1'
   +',resizable=1')
 formatedTitle = document.getElementById('pageHeaderTitle').innerHTML;
 top.consoleRef.document.writeln(
   '<html><head><title>Nyomtatható változat</title>'
   +'<LINK rel="stylesheet" type="text/css" href="css/mainPrint.css"'
   +'</head>'
   +'<body bgcolor=white onLoad="self.focus()">'
   +'<div align="center" id="printButton"><INPUT TYPE="button" VALUE="NYOMTATÁS (Crtl + P)" onClick="window.print();return false"></div>'
   +'<div class="pageHeaderTitle">' + formatedTitle + '</div>'
   +content
   +'</body></html>'
 )
 top.consoleRef.document.close()
}
