openprint = function(content, aurl, kalba, title){ 
var win=window.open("", "newwin", "toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=yes, resizable=no, copyhistory=yes, width=795, height=600");

var currentTime = new Date()
var month = currentTime.getMonth() + 1
var day = currentTime.getDate()
var year = currentTime.getFullYear()

if (month<10) month="0"+month
if (day<10) day="0"+day


win.moveTo(screen.availWidth/2-350,screen.availHeight/2-280);
win.document.write('<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"><html style="backgound:#fff !important">');
win.document.write('<head><meta http-equiv="Content-Type" content="text/html; charset=utf-8"><title>Freor</title>');	
win.document.write('<link rel="stylesheet" type="text/css" href="http://freor.w4.texus.lt/styles/style.css" >');
win.document.write('<script type="text/javascript" src="http://freor.w4.texus.lt/js/jquery-1.4.2.min.js" ></script>');
win.document.write('<script type="text/javascript" src="http://freor.w4.texus.lt/js/jquery-ui-1.8.7.custom.min.js" ></script>');
win.document.write('<script type="text/javascript" src="http://freor.w4.texus.lt/js/script.js" ></script>');


win.document.write('</head><body onLoad="print()" class="noback">');
win.document.write('<div id="printit"><img src="http://freor.w4.texus.lt/images/logo.gif" width="200px"><br/><br/>'+ content +'');
win.document.write('<div style="width:750px; float:left; margin-top: 20px;">http://freor.w4.texus.lt'+aurl+'</div><div style="width:100px; float:left; text-align: right; margin-top: 20px;"><i>'+year+'-'+month+'-'+day+'</i></div>');
win.document.write('</div></body></html>');
win.document.close();
}


