function tableover(obj)
{
obj.style.background = '#ffff00';
}
function tableout(obj)
{
obj.style.background = '#ffffff';
}
function link_chk(obj)
{
var f = document.link_entry;
if (f.cat.value=="0")
	{ alert("Bitte eine Kategorie auswählen!");
	f.cat.focus();
	}
}
function link_hp_chk()
{
var f = document.link_entry;
if(f.cat.value=="0")
{
	alert("Bitte das Formular vollständig ausfüllen!");
	return false;
}
if(f.verein.value=="")
{
	alert("Bitte das Formular vollständig ausfüllen!");
	return false;
}
if(f.hp.value=="")
{
	alert("Bitte das Formular vollständig ausfüllen!");
	return false;
}
if(-1 == f.hp.value.search("http://"))
	{
    f.hp.value = "http://" + f.hp.value;											
	}
return true;
}
