<!--
function change(obj, type)
{
	switch (type)
	{
		case "on":
			obj.src = obj.src.replace(/_small.jpg/i, "_medium.jpg");
		break;

		case "off":
			obj.src = obj.src.replace(/_medium.jpg/i, "_small.jpg");
		break;
	}
}

function pop(src)
{


var currentTime = new Date()


window.open("display.htm?image="+src,currentTime.getSeconds(),'toolbar=0,scrollbars=0,location=0,status=0,menubars=0,resizable=0,width=600px,height=450px');
}
//-->