// JavaScript Document
function stampa_popup()
{
//var css = "<style>body {margin: 0; text-align: left; font-family: Arial, Helvetica, sans-serif; font-size: 10pt; background: #FFFFFF;}</style>";
var css = '<link href="/css/styleStampa.css" rel="stylesheet" type="text/css" />';
var mymeta='<meta name="robots" content="noindex, follow">'
var testo = '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">';    
testo += "<html><head><title>"+document.title+"</title>"+mymeta+css+"</head>";
testo += "<body>"
testo += "<h3>www.ricettericette.it</h3>"
testo += "<h1>"
testo += document.title;
testo += "</h1>"
testo += document.getElementById('stampaRicetta').innerHTML;
testo += "</body></html>";

testo = testo.replace(' rel="lightbox[roadtrip]"','');


var ident_finestra = window.open("","finestra_stampa","height=500,width=640,scrollbars=1");
ident_finestra.document.open();
ident_finestra.document.write(testo);
ident_finestra.document.close();

ident_finestra.window.print();
ident_finestra.window.close();

}

