function BigFoto(URL,W,H,T){
aa = window.open('','_blank', 'width='+W+',height='+H+' ,menubar=no,scrollbars=no, statusbar=no, toolbar=no resizable=no');
aa.document.open();
aa.document.write("<html><head><title>"+T+"</title></head><body bgcolor='#ffffff' leftmargin='0' marginheight='0' marginwidth='0' topmargin='0'><img src='"+URL+"' width='100%' height='100%' border='0'></body></html>");
aa.document.close();
}