 var h_Row = '#cafbca';//'#D3DCC1';
 var bg = '';
 var aw = 'antiquewhite';
 var ws = 'whitesmoke';
	
// -------------------------------------------------------------------------------------
function goToUrl(selObj, goToLocation) {
    eval("document.location.href = '" + goToLocation + "" + selObj.options[selObj.selectedIndex].value + "'");
}

function changeImg(target,URL) {
	target.src=URL;
}

function lockalert() {
	alert('Временно недоступно!!!');
}

// -------------------------------------------------------------------------------------
// для строк
function mOver(Row) {
	bg = Row.style.backgroundColor; 
	Row.style.backgroundColor=h_Row;
}
	
function mOut(Row) {
	Row.style.backgroundColor=bg;
}
	
function mClick(Row) {
	Row.style.backgroundColor=bg;
	//Row.document.location=address
}


// -------------------------------------------------------------------------------------
// для «табов»
function mOver1(Cell) {
	var breif = document.getElementById('breif_cell');
	var full  = document.getElementById('full_cell');
	var ta_breif = document.getElementById('breif_div');
	var ta_full  = document.getElementById('full_div');
	if (Cell==1)
		{ if (ta_breif.style.display  == "none") breif.style.backgroundColor = aw; }
	else 
		{ if (ta_full.style.display   == "none") full.style.backgroundColor  = aw; }
}

function mOut1(Cell) {
	var breif = document.getElementById('breif_cell');
	var full  = document.getElementById('full_cell');
	var ta_breif = document.getElementById('breif_div');
	var ta_full  = document.getElementById('full_div');
	if (Cell==1)
		{ if (ta_breif.style.display  == "none") breif.style.backgroundColor = ws; }
	else 
		{ if (ta_full.style.display   == "none") full.style.backgroundColor  = ws; }
}

function mClick1(Cell) {
	var breif = document.getElementById('breif_cell');
	var full  = document.getElementById('full_cell');
	var ta_breif = document.getElementById('breif_div');
	var ta_full  = document.getElementById('full_div');
	if (Cell==1)
		{ 
		if (breif.style.backgroundColor != ws && breif.style.backgroundColor != h_Row) 
			{
			breif.style.backgroundColor = h_Row
			full.style.backgroundColor  = ws;
			breif.style.cursor = "";
			full.style.cursor  = "hand";
			ta_breif.style.display = "";
			ta_full.style.display  = "none";
			}
		}
	else 
		{ 
		if (full.style.backgroundColor != ws && full.style.backgroundColor != h_Row) 
			{
			full.style.backgroundColor  = h_Row; 
			breif.style.backgroundColor = ws;
			full.style.cursor  = "";
			breif.style.cursor = "hand";
			ta_breif.style.display = "none";
			ta_full.style.display  = "";
			}
		}
}
// -------------------------------------------------------------------------------------
