function DBC2SBC(str) 
{ 
	var i; 
	var result=''; 
	for(i=0;i<str.length;i++) 
		{
			if(str.charCodeAt(i)>65295 && str.charCodeAt(i)<65306)
				result+=String.fromCharCode(str.charCodeAt(i)-65248); 
			else 
				if(str.charCodeAt(i)>47 && str.charCodeAt(i)<58)
				result+=String.fromCharCode(str.charCodeAt(i)); 
		} 
	return result; 
} 
//str.charCodeAt(i)>47 && str.charCodeAt(i)<58//Êý×Ö
//str.charCodeAt(i)>65295 && str.charCodeAt(i)=<65305
