/*
	byo - 2007
	scripts.js
	v0.1
*/

/* highlightInput */
function highlightInput(elem, type) {
	
	if (type) {
		elem.style.backgroundColor = '#a4c34a';
		//elem.className= 'highlightInput-'+type;	
	} else {
		elem.style.backgroundColor = '#f0f0f0';
		//elem.className= '';
	}

}
/* //////////////////////////////////////////////////////////////////////////////////////////////////// */

/* switchClass */
function switchClass(elem, class1, class2) {
	
	if (elem.className==class2) {
		elem.className= class1;
	} else {
		elem.className= class2;
	}

}
/* //////////////////////////////////////////////////////////////////////////////////////////////////// */

/* openLoginBox */
function switchClass(elem, class1, class2) {
	
	if (elem.className==class2) {
		elem.className= class1;
	} else {
		elem.className= class2;
	}

}
/* //////////////////////////////////////////////////////////////////////////////////////////////////// */
