<!--
function changeProductColour(lstSelectList, colorID){
	var lst=document.getElementById(lstSelectList);
	try{
		var intIndex = 0;
		for( intIndex = 0; intIndex < lst.options.length; intIndex++ ){
			var lstID = lst.options[intIndex].value;
			if( lstID == colorID ){
				lst.selectedIndex = intIndex;
//				break;
			}
			if(lstID!=""){document.getElementById("colour"+lstID).className="colourSelector";}
		}
		document.getElementById("colour"+colorID).className="colourSelector_selected";
	}
	catch( expError ){
		//alert("Error:" + expError.number + ", " + expError.description );
	}
}
function addImageLoader(imgURL,imgAlt, colorid){
	var imgHolder=document.getElementById("mainImage");
	try{
		imgHolder.innerHTML='<a onclick="OpenWindow(\'/show_image.cfm?image=copy_'+imgURL+'&colorid='+colorid+'\',\'popImage\',600,400,\'yes\',\'\');return false;" href="/show_image.cfm?image=copy_'+imgURL+'&colorid='+colorid+'" target="popImage"><img src="/shop_images/thumb_'+imgURL+'" alt="'+imgAlt+'" ></a>';
	}catch(expError){
	}
	
}
-->