// this file contains the BEHAVIORS for the controls on forms.
// It is designed to be modifiable by $partner_name in order to allow maximum flexibility in responding to available events.


var tempfocusb;
var tempoverb;



function mmfocus(a){
	if(isie()){		// client detection
		//tempfocusb=a.style.backgroundColor; 
		//a.style.backgroundColor="dddddd";
	}
}


function mmblur(a){
	if(isie()){		// client detection
		//a.style.backgroundColor=tempfocusb;
	}
}


function mmover(a){	
	if(isie()){		// client detection
		//tempoverb=a.style.backgroundColor; 
		//a.style.backgroundColor="dddddd";
	}
}


function mmout(a){
	if(isie()){		// client detection
		//a.style.backgroundColor=tempoverb;
	}
}


function warning_over(a){
	if(isie()){
		tempoverb=a.style.backgroundColor; 
		a.style.backgroundColor="d8b3b3";
	}
}


function warning_out(a){
	if(isie()){
		a.style.backgroundColor=tempoverb;
	}
}


function isie(){
	// this function is important in order to prevent an OBJECT which does not exist from being called.

	if(navigator.appName.indexOf("xplorer")!=-1) return 1;
}

