try { document.execCommand("BackgroundImageCache", false, true); } catch(err) {}
/*sfHover = function() {
	var sfEls = document.getElementById("catloc").getElementsByTagName("LI");
	for (var i=0; i<sfEls.length; i++) {
		sfEls[i].onmouseover=function() {
			this.className+=" sfhover";
		}
		sfEls[i].onmouseout=function() {
			this.className=this.className.replace(new RegExp(" sfhover\\b"), "");
		}
	}
}
if (window.attachEvent) window.attachEvent("onload", sfHover);


window.onload = function() {
	// Hide Canvas Initial Options
	document.getElementById('formcanvas').style.display = 'none';
	document.getElementById('formcanvassize').style.display = 'none';
	
	// Onclick Events
	document.orderform.ordershipping[0].onclick=function(){updateForm();}
	document.orderform.ordershipping[1].onclick=function(){updateForm();}
	document.orderform.ordershipping[2].onclick=function(){updateForm();}
	
	var numradio = document.orderform.getElementByTag('radio');
	alert(numradio);
}

function updateForm() {
	var numordershipping = document.orderform.ordershipping;
	for (var i = 0; i < numordershipping; ++i) {
		if(eval(document.orderform.ordershipping[i].checked)==true) { var ordershipping = document.orderform.ordershipping[i].value; }
	}
	alert("Shpping Value: "+ordershipping);
}


function hidePrint() {
	document.getElementById('formprintsize').style.display = 'none';
	document.getElementById('formprintframe').style.display = 'none';
	document.getElementById('formcanvas').style.display = 'block';
	document.getElementById('formcanvassize').style.display = 'block';
}
function hideCanvas() {
	document.getElementById('formprintsize').style.display = 'block';
	document.getElementById('formprintframe').style.display = 'block';
	document.getElementById('formcanvas').style.display = 'none';
	document.getElementById('formcanvassize').style.display = 'none';
}

function setVisibility(id, visibility) {
	document.getElementById(id).style.display = visibility;
}
*/