function openwindow(image)
{
	parts = image.src.split("/");
	popimage = "pop-" + parts[parts.length - 1];
	
	windowfeatures = "innerHeight=400,innerWidth=400,channelmode=0,dependent=0,directories=0,fullscreen=0,location=0,menubar=0,resizable=0,scrollbars=0,status=0,toolbar=0";
	newwindow = window.open("popup.html?popimage=" + popimage, "Studio Print Direct", windowfeatures);
}

function imagehilite(element)
{
	element.className = "hilite";
}

function imageunlite(element)
{
	element.className = "";
}