function checkform()
{
	var desc=window.document.form1.description.value;
	if(desc.length >'250')
	{
	alert(" Description cant be greater than 250 characters!")
	window.document.form1.description.focus();
	return false;	
	}
	var where_is_mytool=window.document.form1.url.value;
    var mytool_array=where_is_mytool.split(".");
	var where_is_mytool1=window.document.form1.location.value;
    var mytool_array1=where_is_mytool1.split(".");
	var test1=mytool_array[1];
	var test2=mytool_array1[1];
	if (window.document.form1.title.value=="")
	{
	alert("Please enter your website title!")
	window.document.form1.title.focus();
	return false;	
	}
	if (window.document.form1.description.value=="")
	{
	alert("Please enter your website description!")
	window.document.form1.description.focus();
	return false;	
	}

	if (window.document.form1.url.value=="")
	{
	alert("Please enter your website URL!")
	window.document.form1.url.focus();
	return false;	
	}
	if (window.document.form1.category.value=="")
	{
	alert("Please enter category!")
	window.document.form1.category.focus();
	return false;	
	}
	
	if (test1==test2)
	{
	 return true;
	 }
	 else
	 {
		   alert("URL have different names , correct them!")
	      window.document.form1.location.focus();
	      return false;	
	}
}