function Validate(form)
{

v1=form.Category
		if(isblank(v1)==false) 
	{
		alert("Category Can not be Blank");
		v1.focus(); 
	return false
	}

v1=form.Title
		if(isblank(v1)==false) 
	{
		alert("Website Title Can not be Blank");
		v1.focus(); 
	return false
	}



v1=form.Url
		if(isblank(v1)==false) 
	{
		alert("url Can not be Blank");
		v1.focus(); 
	return false
	}

v1=form.Description 
		if(isblank(v1)==false) 
	{
		alert("Link Description Can not be Blank");
		v1.focus(); 
	return false
	}



v1=form.Email
		if(isblank(v1)==false) 
	{
		alert("E-mail Can not be Blank");
		v1.focus(); 
	return false
	}



v1=form.Rlink
	if(isblank(v1)==false) 
	{
	alert("Resciprocal Link Page  Can not be Blank");
	v1.focus(); 
	return false
	}
	
return true;
}

function isblank(s3) 
{
	if (s3.value == "") 
	{
	return false
	}
else 
	{
	return true
   }
}

function isEmail(s2) 
{
	if ((s2.value == "" || s2.value.indexOf('@', 0) == -1) || s2.value.indexOf('.')<5) {
	return false
}
else {
	return true
   }	



}



