ventana=null;
function newImage(imageName, titulo){
winName='Durex Play';
imageWidth=500;
imageHeight =500;
leftPos=300; //(screen.width/2)-(imageWidth/2);
topPos=150; //(screen.height/2)-(imageHeight/2);
parametros ='width='+imageWidth+',height='+imageHeight+',top='+topPos+',left='+leftPos+'';
ventana=window.open('','', parametros);
ventana.document.open();
ventana.document.writeln('<html> <head> <META HTTP-EQUIV="imagetoolbar" CONTENT="no"> <title>'+winName+'</title><link href="styles.css" rel="stylesheet" type="text/css"></head>');
ventana.document.writeln('<body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0" bgcolor="#000000" style="margin:0; padding:0; overflow: hidden;">');
ventana.document.writeln('<img src="'+imageName+'" border="0"><br>');
ventana.document.writeln('</body> </html>');
ventana.document.close();
}  