// JavaScript Document
//顯示以及隱藏預覽的圖片
var I = 0
function ShowBox(n){
  eval('BOX'+n+'.style.left=(event.clientX-100)');
  eval('BOX'+n+'.style.top =(event.clientY+10)');
  eval('BOX'+n+'.style.visibility="visible"');
}
function HideBox(n){
  eval('BOX'+n+'.style.visibility="hidden"');
}
function LoadImg(objImg,strImg){
  if(strImg!=''){
    if(objImg.src != strImg){
      objImg.src = strImg;
    }
  }
  
}
function ShowSize(obj){
  var tmpImg = new Image();
  tmpImg.src = obj.src;
  /*if (tmpImg.width>tmpImg.height){
    if(!((tmpImg.width ==1024 && tmpImg.height  ==768) || (tmpImg.width ==16 && tmpImg.height  ==16) || (tmpImg.width ==800 && tmpImg.height  ==600) || (tmpImg.width ==640 && tmpImg.height  ==480))){
      alert(tmpImg.src+"\n尺寸："+tmpImg.width+"X"+tmpImg.height+"。\n\n尺寸不對 只能上傳1024x768 、 800x600 、 640x480 的圖片！");
      return false;
    }
  }else{
    if(!((tmpImg.width ==1024 && tmpImg.height  ==768) || (tmpImg.width ==16 && tmpImg.height  ==16) || (tmpImg.width ==800 && tmpImg.height  ==600) || (tmpImg.width ==640 && tmpImg.height  ==480))){
      alert(tmpImg.src+"\n尺寸："+tmpImg.width+"X"+tmpImg.height+"。\n\n尺寸不對 只能上傳1024x768 、 800x600 、 640x480 的圖片！");
      return false;
    }
  }*/
}
