var mywin=null;
function foto(url, xx, yy, title)
{
posX = (screen.width / 2) - (xx / 3);
posY = (screen.height / 2) - (yy / 2);

mywin=window.open('','displayWindow','toolbar=no,menubar=no,location=no,scrollbar=no,resizable=no,width='+xx+',height='+yy+',layerx=0,layery=0,top='+posY+',left='+posX+',alwaysRaised=yes')
mywin.document.write('<html><head><title>'+title+'</title></head>');
mywin.document.write('<body leftmargin=0 topmargin=0 marginwidth=0 marginheight=0 onblur=self.close()>');
mywin.document.write('<img src='+url+' border=0>');
mywin.document.close();
window.opener=null;
}

function movie(url, xx, yy, title)
{
posX = (screen.width / 2) - (xx / 3);
posY = (screen.height / 2) - (yy / 2);

mywin=window.open('','displayWindow','toolbar=no,menubar=no,location=no,scrollbar=no,resizable=no,width='+xx+',height='+yy+',layerx=0,layery=0,top='+posY+',left='+posX+',alwaysRaised=yes')
mywin.document.write('<html><head><title>'+title+'</title></head>');
mywin.document.write('<body leftmargin=0 topmargin=0 marginwidth=0 marginheight=0 onblur=self.close()>');
mywin.document.write('<embed src='+url+' width='+xx+' height='+yy+' pluginspage=http://www.apple.com/quicktime controller=true bgcolor=000000 autoplay=true></embed>');
mywin.document.close();
window.opener=null;
}
