function stampa() {
var testo = '<head>';
// path valido per 
//testo += '<link rel=stylesheet href="http://www.sicotem.it/HP/stile.css" type=text/css>';
// path valido per 
testo += '<link rel=stylesheet href="http://www.sicotem.it/HP/stile.css" type=text/css>';

testo += '</head><body><table width="100%">';
testo += document.getElementById('toPrint').innerHTML;
/*
if (document.getElementById('centrale')==null) {
	testo += document.getElementById('toPrint').innerHTML;
	testo +='centrale=null';
}
else {
	var frame=document.getElementById('centrale');
	//testo +='centrale!=null';
	testo += frame.name+"<br>";
	var bottom = frame.contentDocument;
	testo += bottom.URL+"<br>";
	var bottomID = bottom.getElementById('bottom').src;
	testo += bottomID+"<br>";
	//var toP = frame.getAttribute('toPrint');
}
*/
var ident_finestra = window.open('','stampa','height=500,width=700,menubar,scrollbars');
ident_finestra.document.open();
ident_finestra.document.write(testo);
ident_finestra.document.close();
}
//document.write("la stampa c'è");
