
function open_win(whichImage)
{
imgPath = whichImage.src;
var imgHeight=200;
var imgWidth=260;
var winHeight = screen.height;
var winWidth = screen.width;
newPopup = window.open('','','top='+((winHeight - imgHeight) / 2)+',left='+((winWidth - imgWidth) / 2)+'+,toolbar=0,statusbar=0,resizable=0,width='+imgWidth+',height='+imgHeight+',scrollbars=auto');
newPopup.document.write("<html>");
newPopup.document.write("<head>");
newPopup.document.write("<title>Fotos Inmueble</title>");
newPopup.document.write("</head>");
newPopup.document.write("<body>");
newPopup.document.write("<script language='JavaScript' type='text/javascript' src='scripts.js'></script>");
newPopup.document.write("<div  style='position:absolute; left:0; top:0'>");
newPopup.document.write("<img src='"+imgPath+"'>");
newPopup.document.write("</div>");
newPopup.document.write("</body>");
newPopup.document.write("</html>");
}

function set_pic(whichImage)
{
small_img = whichImage.src;
big_img = small_img.replace("/thumbs/", "/prevs/");
document.prev.src = big_img
}

function launch_big()
{
window.open("popup.html", "img", "top=0,left=0,toolbar=0,status=0,resizable=1,scrollbars=1,width=640,height=480");
}

function resize_me()
{
imgWidth = document.images[0].width
imgHeight = document.images[0].height
window.resizeTo(imgWidth, imgHeight)
}
