//Script del Pop Up

/*var ancho=100
var alto=100
var fin=700
var x=100
var y=100
function inicio()
{
ventana = window.open("../../pop-up/popup.php", "_blank", "resizable=0,height=1,width=1,top=x,left=y,screenX=x,screenY=y");
abre();
}
function abre()
{
if (ancho<=fin) {
ventana.moveTo(x,y);
ventana.resizeTo(ancho,alto);
x+=1
y+=1
ancho+=40
alto+=30
timer= setTimeout("abre()",1)
}
else {
clearTimeout(timer);
}
}*/

function inicio()
{
//ventana = window.open("../../pop-up/popup.php", "_blank", "scrollbars=1,resizable=0,height=580,width=720,top=10,left=150");
ventana = window.open("../../pop-up/popup.php", "_blank", "scrollbars=1,resizable=0,height=700,width=700,top=0,left=170");
}
