function go()
{
var a = window. open('','','scrollbars=yes,width=648,height=648');

a.document.open("text/html");
a.document.write('<html><head><link rel="stylesheet" href="styles/print.css"/></head><body><img src="images/fondo_print.jpg" />');
a.document.write(document.getElementById('boxV').innerHTML);
a.document.write('</body></html>');
a.document.close();
a.print();
}