// JavaScript Document
//The "View Larger" script for images

function showDiv(divId) {
	document.getElementById(divId).style.display = 'block';
	}
function hideDiv(divId) {
	document.getElementById(divId).style.display = 'none';
	}
function openImg(fname) {
	img = new Image();
	img.src = 'images/home/'+fname+'.jpg';
	gotWidth = img.width+20;
	gotHeight = img.height+20;
	features = 'width='+ gotWidth+ ',height='+ gotHeight+ ',screenX=150,screenY=100,left=150,top=100,resizable=yes';
	openedImg = window.open(img.src, 'openedImg', features);
	openedImg.resizeBy(img.width-openedImg.document.body.clientWidth, img.height-openedImg.document.body.clientHeight)
	}
