function checkForm() { LinksName = document.getElementById("LinksName"); LinksCompany = document.getElementById("LinksCompany"); LinksWebAddress = document.getElementById("LinksWebAddress"); LinksEmailAddress = document.getElementById("LinksEmailAddress"); LinksTelephone = document.getElementById("LinksTelephone"); errorFound = 0; // Links Name if (LinksName.value == "") { LinksName.setAttribute("className", "inputerror"); LinksName.setAttribute("class", "inputerror"); errorFound = 1; } else { LinksName.setAttribute("className", "inputnormal"); LinksName.setAttribute("class", "inputnormal"); errorFound = 0; } // Links Company if (LinksCompany.value == "") { LinksCompany.setAttribute("className", "inputerror"); LinksCompany.setAttribute("class", "inputerror"); errorFound = 1; } else { LinksCompany.setAttribute("className", "inputnormal"); LinksCompany.setAttribute("class", "inputnormal"); errorFound = 0; } // Links Web Address if (LinksWebAddress.value == "") { LinksWebAddress.setAttribute("className", "inputerror"); LinksWebAddress.setAttribute("class", "inputerror"); errorFound = 1; } else { LinksWebAddress.setAttribute("className", "inputnormal"); LinksWebAddress.setAttribute("class", "inputnormal"); errorFound = 0; } // Links Email if (LinksEmailAddress.value == "") { LinksEmailAddress.setAttribute("className", "inputerror"); LinksEmailAddress.setAttribute("class", "inputerror"); errorFound = 1; } else { LinksEmailAddress.setAttribute("className", "inputnormal"); LinksEmailAddress.setAttribute("class", "inputnormal"); errorFound = 0; } // Links Telephone if (LinksTelephone.value == "") { LinksTelephone.setAttribute("className", "inputerror"); LinksTelephone.setAttribute("class", "inputerror"); errorFound = 1; } else { LinksTelephone.setAttribute("className", "inputnormal"); LinksTelephone.setAttribute("class", "inputnormal"); errorFound = 0; } if(errorFound == 1) { return false; } else { return true; } }