﻿// JScript File
function PopUp(id,a,l)
{
    window.open("Foto.aspx?id="+id,"foto"+id,"width="+l+",height="+a);
};

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();

};