function ValidPhone(aphone)
{
	var valid = "0123456789";

		if(aphone=="")
		{
		alert("Anda belum mengisi No.Handphone!")
		return false
		}
		
		if(aphone.length <= 5 || aphone.length >= 15)
		{
		alert("No.Handphone salah! Silahkan ulangi.")
		return false
		}
		
		
		for (var i=0; i < aphone.length; i++)
		{
		temp = "" + aphone.substring(i, i+1);
		
		
			if (valid.indexOf(temp) == "-1") 
			{
			alert("Format No.Handphone salah.  Silahkan ulangi.")
			return false;
			}
		}
		
	
		return true
}

function valid_required(field)
{
	if(field=="") 
	{
	return false;
	}

	return true;
}