| \n');
}
//********* ฟังก์ชั่นสร้างเอง *************
function changeHeight(heightText){
var heightNumber = new Number(heightText);
var currentHeight = document.getElementById('mySlideTable').clientHeight;
var newHeight = currentHeight + heightNumber;
if (newHeight<370){
document.getElementById('mySlideTable').height = 370;
document.getElementById('Slide_Menu').height = 370;
}else{
document.getElementById('mySlideTable').height = newHeight;
document.getElementById('Slide_Menu').height = newHeight;
}
}
//********* ฟังก์ชั่นสร้างเอง *************
//-->
|
|