///////////////////////////////////////////////////////////////////////////
/// FOCUS INPUTS
//function inputSetBgImageOver(element,imageFile) {
function inputOnFocus(element) {
	//element.style.backgroundImage="url("+imageFile+")";
	//element.style.backgroundImage="url('./css/images/bck_input_over.gif')";
	element.style.backgroundColor = "#e7e7e7";
	element.style.color="#000000";
}

//function inputSetBgImageOut(element,imageFile) {
function inputOnblur(element) {
	//element.style.backgroundImage="url("+imageFile+")";
	//element.style.backgroundImage="url('./css/images/bck_input_out.gif')";
	element.style.backgroundColor = "#CCCCCC";
	element.style.color="#000000";
}