
function Len(str)       
{  
        return String(str).length;  
}



function checkit(test, x)
{
	size=Len(test);

	if ( size < x || size > x)
	{
 		alert('Invalid Phone');
	}

}


