function row_over(eRow){
	eRow.style.backgroundColor = "#efefef";
	eRow.style.cursor = "default";
}
function row_out(eRow){
	eRow.style.backgroundColor = "";
	eRow.style.cursor = "auto";
}
///////////////////////////////////////////////////////////////////////////
function row_over2(eRow){
	eRow.style.backgroundColor = "#d0d0d0";
	eRow.style.cursor = "default";
}
function row_out2(eRow){
	eRow.style.backgroundColor = "";
	eRow.style.cursor = "auto";
}
///////////////////////////////////////////////////////////////////////////
function row_over3(eRow){
	eRow.style.backgroundColor = "#CCCCCC";
	eRow.style.cursor = "default";
}
function row_out3(eRow){
	eRow.style.backgroundColor = "";
	eRow.style.cursor = "auto";
}
///////////////////////////////////////////////////////////////////////////
/// FOCUS INPUTS
//function inputSetBgImageOver(element,imageFile) {
function inputSetBgImageOver(element) {
	//element.style.backgroundImage="url("+imageFile+")";
	element.style.backgroundImage="url('./css/images/bck_input_over.gif')";
	//element.style.backgroundColor = "#767676";
	element.style.color="#333333";
}

//function inputSetBgImageOut(element,imageFile) {
function inputSetBgImageOut(element) {
	//element.style.backgroundImage="url("+imageFile+")";
	element.style.backgroundImage="url('./css/images/bck_input_out.gif')";
	//element.style.backgroundColor = "#333333";
	element.style.color="#000000";
}