// toggle form label coloursfunction nameOn(  ) {  var div = document.getElementById("yourWorkRequestLabelSmall1");  div.style.color="#fb9716";  var div2 = document.getElementById("yourWorkRequestLabel1");  div2.style.color="#fb9716";}function nameOff(  ) {  var div = document.getElementById("yourWorkRequestLabelSmall1");  div.style.color="#bcbcbc";  var div2 = document.getElementById("yourWorkRequestLabel1");  div2.style.color="#bcbcbc";}function emailOn(  ) {  var div = document.getElementById("yourWorkRequestLabelSmall2");  div.style.color="#fb9716";  var div2 = document.getElementById("yourWorkRequestLabel1");  div2.style.color="#fb9716";}function emailOff(  ) {  var div = document.getElementById("yourWorkRequestLabelSmall2");  div.style.color="#bcbcbc";  var div2 = document.getElementById("yourWorkRequestLabel1");  div2.style.color="#bcbcbc";}function phoneOn(  ) {  var div = document.getElementById("yourWorkRequestLabelSmall3");  div.style.color="#fb9716";  var div2 = document.getElementById("yourWorkRequestLabel1");  div2.style.color="#fb9716";}function phoneOff(  ) {  var div = document.getElementById("yourWorkRequestLabelSmall3");  div.style.color="#bcbcbc";  var div2 = document.getElementById("yourWorkRequestLabel1");  div2.style.color="#bcbcbc";}function yourworkOn(  ) {  var div = document.getElementById("yourWorkRequestLabel2");  div.style.color="#fb9716";  var div2 = document.getElementById("yourWorkRequestInfo1");  div2.style.color="#444";}function yourworkOff(  ) {  var div = document.getElementById("yourWorkRequestLabel2");  div.style.color="#bcbcbc";  var div2 = document.getElementById("yourWorkRequestInfo1");  div2.style.color="#999";}function yoursiteOn(  ) {  var div = document.getElementById("yourWorkRequestLabel3");  div.style.color="#fb9716";  var div2 = document.getElementById("yourWorkRequestInfo2");  div2.style.color="#444";}function yoursiteOff(  ) {  var div = document.getElementById("yourWorkRequestLabel3");  div.style.color="#bcbcbc";  var div2 = document.getElementById("yourWorkRequestInfo2");  div2.style.color="#999";}