 var how_many_ads =3;	//จำนวนแบนเนอร์
 var now = new Date()
 var sec = now.getSeconds()
 var ad = sec % how_many_ads;
 ad +=1;
 if (ad==1) {
 banner="../logo/logoweb1.swf";  //ที่อยู่และชื่อแบนเนอร์ 1
 width="753";			//ความกว้างของแบนเนอร์
 height="169";			//ความสูงของแบนเนอร์
 }
 if (ad==2) {
 banner="../logo/logoweb2.swf";  //ที่อยู่และชื่อแบนเนอร์ 2
 width="753";
 height="175";
 }
 if (ad==3) {
 banner="../logo/logoweb3.swf";  //ที่อยู่และชื่อแบนเนอร์ 3
 width="753";
 height="159";
 }
 
document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="'+ width +'" height="'+ height +'">');
document.write('<param name="allowScriptAccess" value="sameDomain">');
document.write('<param name="menu" value="false" >');
document.write('<param name="wmode" value="transparent" >');
document.write('<param name="bgcolor" value="#ffffff" >');
document.write('<param name="movie" value="' + banner + '">');
document.write('<param name="quality" value="high">');
document.write('<embed src="' + banner + '" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="'+ width +'" height="'+ height +'">');
document.write('</embed>');
document.write('</object>');

