﻿function roll(imgId, action) {
    if (action == "mouseover")
        document.getElementById(imgId).src = document.getElementById(imgId).src.replace(".gif", "_r.gif");
    else if (action == "mouseout")
        document.getElementById(imgId).src = document.getElementById(imgId).src.replace("_r.gif", ".gif");   
   }

   function GetNAImageObj(image) {
       if (image != null) {
           image.src = "/Images/JobSearch/noimage.gif"

           return;
       }
   }
