else
{
var file=document.getElementById("filAlbumShot").value;
var patt=/(.gif|.jpg|.png)/; //จะเอาชื่อนามสกุลไฟล์อะไรก้อไส่เลยนะ ผมไม่รุ้มีนามสกุลอะไรมั้ง เขียนดักไว้เลยหน้าอัพโหลด
var result=patt.test(file);
if(!result)
{
alert('file type is wrong (jpg,png,gif only)');
}
return result;
}