    //Define global JS variables
    
    
    //Define global JS variables
    
    
//SwapImage Function
function SwapImage(objImage) {
  if (objImage == null) {
    objImage = window.event.srcElement;
    }
  if (objImage != null) {
    if (objImage.src != null) {
      if (objImage.src.indexOf("1.gif") > 0) {
        objImage.src = objImage.src.toLowerCase().replace("1.gif", "2.gif");
        }
      else {
        objImage.src = objImage.src.toLowerCase().replace("2.gif", "1.gif");
        }
      }
    }
  }

//popUp function
function popUp(URL) {
  day = new Date();
  id  = day.getTime();
  eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=700,height=500,left = 162,top = 134');");
  }
