// JavaScript Document
<!--
function add_to_cart(item_no){
	GoForm('/cart.asp?action=add','id=' + item_no,'shopping_cart')	
}
function Check_Form_Substring(formname){
	var rep=document.getElementsByName("memo"),rlen;
	if(typeof(rep[0])=="undefined"){rlen=0;}
	else{rlen=rep.length;}
	for(var i=0;i<rlen;i++){
	rep[i].value=rep[i].value.replace(/, +/g,',');
	}
//return false;
}
function GoProduct(sid){
	GoUrl('/product_view.asp','id=' + sid,'_blank');
}
-->