function ViewLargePhoto()
{
	var url="viewlargephoto.cfm?Product=" + document.getElementById("id").value;
	window.open(url,"LargePhoto","toolbar=0,location=no,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,width=320,height=430");
	return false;
}

if (typeof document.getElementById("productphoto").addEventListener != "undefined")
{ document.getElementById("productphoto").onclick=ViewLargePhoto; }

if (typeof document.getElementById("productphoto").attachEvent != "undefined")
{ document.getElementById("productphoto").attachEvent("onclick",ViewLargePhoto); }
