﻿function links_check(theform)
{
if (theform.pLink_Name.value=="")
{
alert("请填写网站名称！");
theform.pLink_Name.focus();
return false;
}

if (theform.pLink_Url.value=="" || theform.pLink_Url.value=="http://")
{
alert("请填写网站地址！");
theform.pLink_Url.focus();
return false;
}

if (theform.pLink_Person.value=="")
{
alert("请填写网站联系人！");
theform.pLink_Person.focus();
return false;
}

if (theform.pLink_Email.value=="")
{
alert("请填写电子邮箱！");
theform.pLink_Email.focus();
return false;
}

//if (theform.pLink_Tp.value!="0" && theform.pLink_Pic.value=="")
//{
//alert("请填写网站图标地址！");
//theform.pLink_Pic.focus();
//return false;
//}

return true;
}