<!--
// Function to validate URL
// Arguments   : 1. url : Value of the URL to be tested
// Return Value: true if date is valid, false otherwise.

function isValidURL(url)
{	 
	var checkIt= /http:\/\/[A-Za-z0-9\.-]{3,}\.[A-Za-z]{3}/
	if (!checkIt.test(url))

	{	
//		alert("Enter website URL is invalid. Try again."); 
		return false; 
	} 
	return true;
}
//-->
/*
function check_it()
{
 var theurl=document.f1.t1.value;
 var tomatch= /http:\/\/[A-Za-z0-9\.-]{3,}\.[A-Za-z]{3}/
 if (tomatch.test(theurl))
 {
 window.alert("URL OK.");
 return true;
 }
 else
 {
 window.alert("URL invalid. Try again.");
 return false; 
}
}

*/