





// JavaScript Document
function CheckCodeWish(opt){
	
		//alert( "addToWishlist.asp?itemid="+opt);
		document.myform.action= "addToWishlist.asp?itemid="+opt;
		document.myform.submit();
		return true;
	}
					


function CheckCode(opt){

		//alert("addToCart.asp?Mode=Add&itemid="+opt);
		document.myform.action= "addToCart.asp?Mode=Add&itemid="+opt;
		document.myform.submit();
		return true;
	
}

		

function optionText(selectName){
	var selName=selectName;
	var selTxtName=selectName+"Text";
	//alert (selName);
	//alert (selTxtName);
	var OptValue = document.getElementById(selName);
	var OptTxt = document.getElementById(selTxtName);
	OptTxt.value = OptValue.options[OptValue.selectedIndex].text;
	setPrice();
	return true;
}
