

OdsCHK=function() 
{  
var filter=/^\s*[0-9]{1,2}\s*$/; 
if (!filter.test(document.getElementById('SOP_Amount').value)) { 
	alert("購入数は必ず半角数字で. 入力してください !"); 
	document.odssub.SOP_Amount.focus(); 
	document.odssub.SOP_Amount.select(); 
	return (false); 
	} 
document.odssub.submit()
}



//PUB

RandomNumber=function(){
  return Math.floor(Math.random()*999999);
}

