// Order Max JavaScript Document for Prod View Page

function ShowProdViewThumb() { 
	var a = ShowProdViewThumb.arguments;
	var aref = document.getElementById(a[0]);
	if(aref)
	{
		pref = aref.parentNode.parentNode.parentNode.parentNode.parentNode;
		if(pref)
		{
			var thmbimg = pref.getAttribute("id");
			if(thmbimg == "AccD")
			{
				var thmbholder = document.getElementById("AccImgThumb");
			}
			if(thmbimg == "AltD")
			{
				var thmbholder = document.getElementById("AltImgThumb");
			}
			if(thmbholder)
			{
				thmbholder.setAttribute("src","images/"+a[0]+".jpg");	
			}
		}
	}
}
function ProdViewThumbRestore() {
	var a = ProdViewThumbRestore.arguments;
	var aref = document.getElementById(a[0]);
	if(aref)
	{
		pref = aref.parentNode.parentNode.parentNode.parentNode.parentNode;
		if(pref)
		{
			var thmbimg = pref.getAttribute("id");
			if(thmbimg == "AccD")
			{
				var thmbholder = document.getElementById("AccImgThumb");
			}
			if(thmbimg == "AltD")
			{
				var thmbholder = document.getElementById("AltImgThumb");
			}
			if(thmbholder)
			{
				thmbholder.setAttribute("src","images/HoverOPCode.gif");	
			}
		}
	}
}