// JavaScript Document
<!--
function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
//-->
//ฟังก์ชั่นเปลี่ยนรูปภาพไอคอนด้านเมนู leftFrame
function imgChange(targ,pos){
	var target=eval(targ);
	for(i=0;i<target.getElementById("menu_table").rows.length;i++)
		target.getElementById("img["+i+"]").src="images/arrow_blue.gif";
	target.getElementById(pos).src="images/arrow_white.gif";
}
//ฟังก์ชั่นกำหนดสีพื้นหลัง
function setPointer(field,action,defaultColor,pointerColor,markColor){ 
	var newColor;
	var currentColor;
	
	currentColor=field.style.backgroundColor; 

	if(action=="over" && currentColor.toLowerCase()==defaultColor.toLowerCase()) newColor=pointerColor;
	if(action=="out" && currentColor.toLowerCase()==pointerColor.toLowerCase()) newColor=defaultColor; 
	if(action=="click" && currentColor.toLowerCase()==defaultColor.toLowerCase()) newColor=markColor; 
	if(action=="click" && currentColor.toLowerCase()==pointerColor.toLowerCase()) newColor=markColor;
	if(action=="click" && currentColor.toLowerCase()==markColor.toLowerCase()) newColor=pointerColor;

	if(newColor) field.style.backgroundColor=newColor;
} 
