function checkValid()
{
	var tomatch= "/http:\/\/[A-Za-z0-9\.-]{3,}\.[A-Za-z]{3}/";
	with(document.frmurl)
	{
		if(vURL.value =="" )
		{
			alert("Please Enter valid Long URL!");
			vURL.focus();
			return false;
		}
	}
}
function checkValidAPI()
{
	var tomatch= "/http:\/\/[A-Za-z0-9\.-]{3,}\.[A-Za-z]{3}/";
	with(document.frmurlapi)
	{
		if(vURL.value =="" )
		{
			alert("Please Enter valid Long URL!");
			vURL.focus();
			return false;
		}
	}
}
