function IsDelete() {
 if (confirm("您確定要刪除嗎？")) {
   return(true);
 }
 return(false);
}
function IsDeleteClass() {
 if (confirm("您確定要刪除此類別、子類別及此類別下所有文件或商品資料嗎？")) {
   return(true);
 }
 return(false);
}

function ppshow() { 
    for(i=0; i<document.images.length;i++){
        if(document.images[i].width>300) {
            document.images[i].width=300
        } else {
            document.images[i].width=document.images[i].width
        }
        if(document.images[i].height>250) {
            document.images[i].height=250
        } else {
            document.images[i].height=document.images[i].height
        }
    }
}