function CheckForm_friendlink(theform)
{   

	
	
	if(theform.friendlink_name.value=="")
   {
      alert("网站名称不能为空，请填写！！"); 
	  theform.friendlink_name.focus(); 
	  return false;
    }
	
		if(theform.friendlink_url.value==""||theform.friendlink_url.value=="http://")
   {
      alert("链接地址不能为空，请填写！！"); 
	  theform.friendlink_url.focus(); 
	  return false;
    }
	
		//判断图片上传开始
	  var   a   =   document.getElementsByName("friendlink_imageflag"); 
      for(i=0;i<a.length;i++)   
      {  
  if(a[i].checked&&parseInt(a[i].value)==1)   
   {
   if (theform.friendlink_image.value =="")
     {
        alert("请上传图片!");
		theform.friendlink_image.focus(); 
	return false;
     }
   }  
      }   
	 //判断图片上传结束
	 
	
}