function finopen(indirizzo,nome,w,h) {
mywin=window.open(indirizzo, nome, "resizable=yes,toolbar=no,directories=no,menubar=no,scrollbars=yes,width="+w+",height="+h);
}

function fini(indirizzo,nome,w,h) {
mywin=window.open(indirizzo, nome, "resizable=yes,toolbar=no,directories=no,menubar=no,scrollbars=yes,width="+w+",height="+h);
mywin.focus();
}


function fingallery(nome,w,h,stringa) {
mywin=window.open("", "zoom", "resizable=yes,toolbar=no,directories=no,menubar=no,scrollbars=yes,width="+w+",height="+h);

mywin.document.writeln("<HTML><HEAD><title>Cultural Heritage in South-Eastern Europe - A Bridge towards a shared future - Activities - "+stringa+"</title>");
mywin.document.writeln("</HEAD><BODY>");

mywin.document.writeln("<meta http-equiv=\"Content-TYPE\" content=\"text/html; charset=UTF-8\">");

mywin.document.writeln("<link href=\"base.css\" rel=\"stylesheet\" type=\"text/css\"  media=\"Screen\">");

mywin.document.writeln("<link href=\"print.css\" rel=\"stylesheet\" type=\"text/css\"  media=\"print\">");

mywin.document.writeln("</head>");

mywin.document.writeln("<body hspace=\"0\" vspace=\"0\" marginwidth=\"0\" marginheight=\"0\" topmargin=\"0\" leftmargin=\"0\" >");

mywin.document.writeln("<h1 class=\"titolo1\">"+stringa+"</h1>");

mywin.document.writeln("<p class=\"contenuto\">");
mywin.document.writeln("<img class=\"imggallery\" src=\""+nome+"\">");
mywin.document.writeln("</p>");

mywin.document.writeln("<div class=\"noprint\">");
mywin.document.writeln("<p class=\"contenuto\"><a href=\"javascript:self.close()\" class=\"tipo1\"><span class=\"tab300\" >CLOSE WINDOW</span></a><br><a href=\"javascript:window.print()\" class=\"tipo1\" tabindex=\"1\" title=\"print page\"><span class=\"tab300\" >Print&nbsp;&nbsp;<img src=\"img/ic-stampante.gif\" width=\"14\" height=\"11\" border=\"0\"></span></a></p>");
mywin.document.writeln("</div>");
mywin.document.writeln("</body>");
mywin.document.close();
mywin.focus();
}
