﻿function mom(n,x,y)
{
if (y == undefined) {
	//document.getElementById(n).style.backgroundColor = '#69c';
	document.getElementById(n).style.backgroundColor = '#E0510C';
	document.getElementById(n).style.backgroundImage= 'none';

} else {
	document.getElementById(n).style.backgroundColor = '#FF8A42';
}
document.getElementById(n).style.cursor='pointer';
if (x==1) {
	document.getElementById(n+'_in').style.display='block';
	}
}

function mtm(n,x,y)
{
if (y == undefined) {
	document.getElementById(n).style.backgroundColor= '#365782';
	document.getElementById(n).style.backgroundImage= 'url(\'/images/bg.gif\')';
} else {
	document.getElementById(n).style.backgroundColor = '#E24500';
}
if (x==1) {
	document.getElementById(n+'_in').style.display='none';
	}
}

