﻿// JScript File
function openGalleryImage(file){
    window.open('GalleryImage.aspx?file=' + file ,'BigPic','height=400,width=400,location=no');
}

function setWindowSize(imageTag){
if (document.getElementById(imageTag)){
	image=document.getElementById(imageTag);
	W= image.width+25;
	
	H=image.height+75;
}else{
    W=345;
    H=350;
}

	 
	window.resizeTo(W,H);
	
	Left = (screen.width/2) - W/2;
	Top = (screen.height/2) - H/2;
	
	window.moveTo(Left,Top);

}