// codigo creado por zeuz scripts®
// si desea usar este codigo por favor envair un mail a zeuz113@gmail.com
// y con gusto le enviaremos las instrucciones o autorizacion 
// es total mente gratis si esta nota se conserva intacta

var background="#000000" //color de fondo de la ventana
var wtitle=".:speed4life:."  //titulo de la ventana 

function dexistencia(obj){
return (typeof obj !="undefined")
}

function zeuzimgs(imgfuente, anchura, altura, texto){

function posicion(){
posiz=(dexistencia(window.screenLeft))? screenLeft+document.body.clientWidth/2-anchura/2 : dexistencia(window.screenX)? screenX+innerWidth/2-anchura/2 : 0
posarr=(dexistencia(window.screenTop))? screenTop+document.body.clientHeight/2-altura/2 : dexistencia(window.screenY)? screenY+innerHeight/2-altura/2 : 0
if (window.opera){
posiz-=screenLeft
posarr-=screenTop
}
}

posicion()
var atributos='width='+anchura+',height='+altura+',resizable=yes,left='+posiz+',top='+posarr
var atributosc=(background.indexOf(".")!=-1)? 'background="'+background+'"' : 'bgcolor="'+background+'"'
if (typeof zeuzvent=="undefined" || zeuzvent.closed)
zeuzvent=window.open("","",atributos)
else{
//posicion() //quite el signo  de comentario (//) de estas 2 lineas si desea que las ventanas que se abran sean centradas tambien 
//zeuzvent.moveTo(posiz, posarr)
zeuzvent.resizeTo(anchura+5, altura+35)
}
zeuzvent.document.open()
zeuzvent.document.write('<html><title>'+wtitle+'</title><body '+atributosc+' text="#CCCCCC" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0" scroll=no><img src="'+imgfuente+'" border=0 onclick="javascript: window.close ();"></body></html>')
zeuzvent.document.close()
zeuzvent.focus()
}