﻿// JScript File
function PopUp(id,a,l)
{
    window.open("Fotos.aspx?id="+id,"foto","width="+l+",height="+a);
};

function Pop(id)
{
    window.open("Prod.aspx?id="+id,"foto","width=350, height=350")
}
function Resize()
{
   var NS = (navigator.appName=="Netscape")?true:false;

   iWidth = (NS)?window.innerWidth:document.body.clientWidth;
   iHeight = (NS)?window.innerHeight:document.body.clientHeight;
   iWidth = document.images[0].width - iWidth;
   iHeight = document.images[0].height - iHeight;
   window.resizeBy(iWidth, iHeight);
   self.focus();

};
