function checkLinkForm() {
	if(navigator.userAgent.indexOf("MSIE")==-1)
		var thisform=document.linkForm;
	else
		var thisform=linkForm;
		
	if (Jtrim(thisform.websiteType.value)=='') {
                window.alert ("Please specify your website type.")
		thisform.websiteType.focus();
                return false;
        }
        
	if (Jtrim(thisform.name.value)=='') {
                window.alert ("Please specify your name.")
		thisform.name.focus();
                return false;
        }
        
       
        
        if (Jtrim(thisform.email.value)=='') {
                window.alert ("Please specify your email.")
		thisform.email.focus();
                return false;
        }
        
        if (Jtrim(thisform.homepage.value)=='') {
                window.alert ("Please specify your URL.")
		thisform.homepage.focus();
                return false;
        }
        
        if (Jtrim(thisform.country.value)=='') {
                window.alert ("Please specify your country.")
		thisform.country.focus();
                return false;
        }
        
        if (Jtrim(thisform.subject.value)=='') {
                window.alert ("Please specify a subject.")
		thisform.subject.focus();
                return false;
        }
        
	if (Jtrim(thisform.message.value)=='') {
                window.alert ("Please specify message.")
		thisform.message.focus();
                return false;
        }
}
