function checkPhone(phone)
{
	phone.toString();
//alert(phone);
	for(var i=0; i< phone.length; i++)
	{
		var temp = phone.charAt(i);
		if(temp!=' ' && temp!='1' && temp!='2' && temp!='3' && temp!='3' && temp!='4' && temp!='5' && temp!='6' && temp!='7' && temp!='8' && temp!='9' && temp!='0') return false;
	}
	return true;
}