var myimages=new Array()

function preloadimages()
{
	for (i = 0; i < preloadimages.arguments.length; i++)
	{
		myimages[i]=new Image()
		myimages[i].src=preloadimages.arguments[i]
	}
}

function showpic(picsrc)
{
	var src = picsrc.replace("_sml.jpg","_big.jpg");
	var fs = window.open(src, "ViewPhoto", "height=640,width=840,toolbar=no,menubar=no,scrollbars=no,resizable=no,location=no,directories=no,status=no");
	fs.focus();
}

function showdetails()
{
	parent.document.getElementById('i-overall').style.left = escape(document.body.clientWidth/2+40)+"px";
	parent.document.getElementById('i-overall').style.top = escape(document.body.clientHeight/2-40)+"px";
	document.getElementById('i-overall').style.display = 'block';
}

