function Printtaa(target) { 
 PrintWin=window.open('','printwin','width=600,height=600'); 
 PrintWin.document.write("<html><head><title>Vaihtoveneet.fi - Tuotetiedot</title><link rel=\"stylesheet\" href=\"css/print.css\" type=\"text/css\"></head><body>");
 PrintWin.document.write(target); 
 PrintWin.document.write("</body></html>");
 PrintWin.document.close(); 
 PrintWin.focus(); 

if (window.print) PrintWin.print();
 PrintWin.close();
} 

