﻿   
   	var NS = (navigator.appName=="Netscape")?true:false; 

	function FitPic(fitType) { 
	    
		var minWidth = new Number(320);
		var minHeight = new Number(200);
		var imgWidth = document.getElementById("img").width + 12;
		var imgHeight = document.getElementById("img").height;
		if(fitType=='gallery'){
		    iHeight = (NS)?window.innerHeight:document.body.clientHeight + 38; 
		}else{
    		iHeight = (NS)?window.innerHeight:document.body.clientHeight + 38; 
		}
		
		if(minWidth>imgWidth)
			imgWidth=minWidth;	
		
		if(minHeight>iHeight)
			iHeight=minHeight;

		window.resizeTo(imgWidth, iHeight);
		self.focus();
	 }

	function showImg(siteRelativePath,imgID,pid)
	{
	  urlPage = siteRelativePath+'/webSite/Templates/GalleryViewer.aspx?picID=' + imgID + '&pid=' + pid
	  popUpImg = open(urlPage, 'popUpImg', 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,copyhistory=no,width=50,height=50,left=250, top=150');
	}

	function zoomImg(siteRelativePath,pid,Preview)
	{
	  urlPage = siteRelativePath+'/webSite/Templates/picViewer.aspx?pid=' + pid+"&Preview="+Preview;
	  zoomWin = open(urlPage, 'popUpImg', 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,copyhistory=no,width=50,height=50,left=250, top=150');
	}

	
