function DocumentPreloadImages() {
    if (document.images) {        
        for (index = 0; index < document.images.length ; index++) {
						window.status = "Loading " + index;
            var preloadImage = new Image();
            preloadImage.src = document.images[index].src;          
        }
    }   
    window.status = "Done";
    return true;
}

function FooterPopup(url, windowname, width, height)
{
if (! window.focus) return true;
var w = "417";
if (width) w = width;
var h = "600";
if (height) h=height;
window.open(url, windowname, "width=" + w + ",height=" + h + ",scrollbars=yes");
}

function MenuItem_onmouseover(imgName) {
  eval("document." + imgName + ".src = 'images/" + imgName + "on.jpg'");
}

function MenuItem_onmouseout(imgName) {
  eval("document." + imgName + ".src = 'images/" + imgName + ".jpg'");
}

function ProductToggleEnlarged(sku)
{
	var promptEnlargedView = "Enlarged View";
	var promptNormalView = "Normal View";
	var anchor = document.getElementById("ViewSizeAnchor");
	var image = document.getElementById("ProductImage");
	if (anchor.innerHTML != promptNormalView )
	{
		anchor.innerHTML = promptNormalView;		
		var src = image.src.replace("-med.jpg" , "240x240.jpg");
	}
	else
	{
		anchor.innerHTML = promptEnlargedView;
		var src = image.src.replace("240x240.jpg" , "-med.jpg");
	}
	image.src = src;
	image.alt = src;		
}
