<!--
function popup ($page,$w,$h,$target,$resize)
{
	window.open($page,$target,"WIDTH="+$w+",HEIGHT="+$h+",TOOLBAR=no,MENUBAR=yes,RESIZABLE="+$resize+",SCROLLBARS=yes");
}

function popup_print(id,add,style)
{
	var finestra=window.open("","stampa","TOOLBAR=yes,MENUBAR=yes,resizable,scrollbars,height=600,width=800");
	finestra.document.open();
	finestra.document.write("<html>\n<head>\n<link rel=\"stylesheet\" href=\""+style+"\" />\n");
	finestra.document.write("</head>\n");
	finestra.document.write("<body>\n");
	finestra.document.write(add);
	finestra.document.write("<div class=\"basket\">"+document.getElementById(id).innerHTML+"</div>\n");
	finestra.document.write("</body></html>");
	finestra.document.close();
	finestra.print();
	finestra.close();
} 
//-->

