﻿// JScript File
function pop(elementToHide, elementToShow) {
  document.getElementById(elementToShow).style.display='block';
  document.getElementById(elementToHide).style.display='none';
  return false
}
function validate() {
 if(document.forms['edit'].imageVerify.value==""){
    alert("Please enter the characters from the image.");
    document.forms['edit'].imageVerify.focus();
    }else{
    document.forms['edit'].submit();
    }
}

