// JavaScript Document

//Javascript for showing photo gallery

function ShowPics(pic,fname,picWidth,picHeight,viewerWidth,viewerHeight)
{
	// load picture into picture layer
	document.getElementById(pic).src=fname;
//	pW=0;
//	pH=0;
//	scale=1;
//  alert ("Picture = " + picWidth + "  -  " + picHeight + " frame = " + viewerWidth + "  -  " + viewerHeight);
//	alert (pic + " - " + fname);
//	if (picHeight > picWidth)
//		{
//			scale = viewerHeight/picHeight;
//		}
//	else
//		{
//			scale = viewerWidth/picWidth;
//		}	

//	pW = round(picWidth * scale);
//	pH = round(picHeight * scale);
//	pM = "-" + round(pH/2) + "px 0 0 -" +round(pW/2) + "px"
	
//	alert (pM)
	
//	document.getElementById(pic).width = pW + "px";
//	document.getElementById(pic).height = pH+ "px";
//	document.getElementById(pic).margin = pM;
//	document.getElementById(pic).src=fname;
	//width:455px; height:325px; margin: -163px 0 0 -228px;
	
//alert ("hello");
}


//function setImageGallery(galleryName)
//{

	//alert (galleryName);
//	window.location.reload('photo.php?name='+galleryName+'/');
	
//}

