function add_cccFormSPG_event_handlers() {

    document.getElementById("cccFormSPG").onsubmit = cccFormSPG_onSubmit;
	document.getElementById("cccSelectSPG").onchange = cccSelectSPG_onChange;
}

function cccFormSPG_onSubmit() {
	if (document.custContactFormSPG.custContactSelectSPG.value.length > 0) {
        document.location = document.custContactFormSPG.custContactSelectSPG.value;
        return false;
	}
}

function cccSelectSPG_onChange() {
	if(document.custContactFormSPG.custContactSelectSPG.value.length > 0) {
        document.location = document.custContactFormSPG.custContactSelectSPG.value;
        }
}

// Safely adds to the document's onLoad event.
function addLoadEvent(func) {
  var oldonload = window.onload;
  if (typeof window.onload != 'function') {
    window.onload = func;
  } else {
    window.onload = function() {
      oldonload();
      func();
    }
  }
}
addLoadEvent(add_cccFormSPG_event_handlers);