// JavaScript Document
/*function imagePop(URL)
{
	//alert(URL);
	window.open(URL,'','toolbar=0,scrollbars=0,location=0,status=0,menubar=0,resizable=0,width=220,height=220');
	
}		
*/
function imagePop(URL)
{
x=new Image;
x.src=URL;

iw=x.width+20;
ih=x.height+20;
//alert("Image width is: "+iw+" pixels, and image height is: "+ih+" pixels.");

	
window.open(URL,'','toolbar=0,scrollbars=0,location=0,status=0,menubar=0,resizable=0,width='+iw+',height='+ih);
	
}	
function imgClick(target)
{
	document.getElementById('oImg').value = target;
	
	document.getElementById('lnkShot').href = target;
	
	document.getElementById('bigImage').src = target;
	
}