// JavaScript Document

<!--

// Disable enter key from submitting forms
function disableEnterKey(e)
{
	var key;     
	if(window.event){
		key = window.event.keyCode; //IE
	}else{
		key = e.which; //firefox     

		return (key != 13);
	}
}

//Form Hints
function showHint(spanID, hintTxt) {
	document.getElementById(spanID).innerHTML=hintTxt;
}


//Apparel color swap
function changePic(picID, url, captionID, caption) {				
	document.getElementById(picID).src=url;
	document.getElementById(captionID).innerHTML=caption;
}
//-->