//顯示圖片視窗
function openImageWindow(imagePath,imageName) {
  imageURL = imagePath+imageName;
  window.open('/system/openImage.jsp?imageURL='+imageURL, '_blank' , 'alwaysRaised=yes,height=650,width=650,left=150,top=20,resizable=yes,scrollbars=yes,status=yes');
}
function WordLeng(intLen, id){ 
var obj=document.getElementById(id);
var strContent=obj.innerHTML; 
var strTemp="";
while(strContent.length>intLen){
strTemp+=strContent.substr(0,intLen)+"<br>"; 
strContent=strContent.substr(intLen,strContent.length); 
}
strTemp+= strContent;
obj.innerHTML=strTemp;
} 
