﻿// JScript 文件
var imagePath = "../User/ImageValidate.aspx";
function ImageCommon() {
}

ImageCommon.prototype.Image = function(obj){
    var s = "<img src='"+ imagePath +"' alt='another picture' id='ImageCheck' height='30px' width='150px' ";
    s += " onclick=\"javascript:ChangeCodeImg();\" align='absBottom'/>";
      s += "<span style='cursor:hand'  onclick=\"javascript:ChangeCodeImg();\">Another Picture</span>"
     
    obj.innerHTML = s;
}

  function ChangeCodeImg()
{ 
   var ic = new ImageCommon();
   ic.Image(document.getElementById("CheckImage"));   
  
}