<!--
function changePict(theImg) {
	theImgStr = theImg.src;
	thePos = theImgStr.indexOf("1.jpg");

	if (thePos!=-1) {
		theURL = theImgStr.substring(0,thePos);
		theImgStr = theURL + "2.jpg";
		theImg.src = theImgStr;
	}
	else {
		thePos = theImgStr.indexOf("2.jpg");
		theURL = theImgStr.substring(0,thePos);
		theImgStr = theURL + "1.jpg";
		theImg.src = theImgStr;
	}
}

function goFromCombo(target, selObj) {
	var Current = selObj.selectedIndex;
	var temp = selObj.options[Current].value;
  location.href = target + temp;
}

//-->
