var w=0;
var w_p=0;
var cTopAc = '#EEA467'; cTopUn = '#E56F0F';
var cLeftAc = '#D9DBE9'; cLeftUn = '#E5E5E5';

// ------- FUNCTIONs ---------------
function pop_up(url, left, top, width, height){
  if(w){
    w.close();
  }
  w = open(url, 'popup', 'toolbar=no,fullscreen=0,location=no,directories=no,status=yes,scrollbars=yes,menubar=no,resizable=yes,copyhistory=yes,width='+width+',height='+height+',left='+left+', top='+top+',screenX='+left+',screenY='+top+'');
}

function _clickViewPIC(initnameHTML, _w, _h){
	var url = initnameHTML;
	var left = 50;
	var top = 50;
	var width = _w+20;
	var height = _h+30;
	if(w_p){
    	w_p.close();
  	}
	w_p = open(url, 'popup', 'toolbar=no,fullscreen=0,location=no,directories=no,status=no,scrollbars=no,menubar=no,resizable=no,copyhistory=yes,width='+width+',height='+height+',left='+left+', top='+top+',screenX='+left+',screenY='+top+'');
}

function _clickViewHTML(initnameHTML, _w, _h){
	var url = initnameHTML;
	var left = 50;
	var top = 50;
	var width = _w;
	var height = _h;
	pop_up(url, left, top, width, height);
}
function _backSite(url){
	if (opener) {
		if (!opener.closed) {
			opener.focus();
		}
		else {
			var site = open(url);
		}
	}
}
//------------------------------------
function _currentElement(e){
	if (!e) var e = window.event;
	return (e.target) ? e.target : e.srcElement;
}

function _overTopMenu(e){
	_chColorTM(e, cTopAc);
}

function _outTopMenu(e){
	_chColorTM(e, cTopUn);
}

function _chColorTM(e, initC){
	var _b = _currentElement(e);
	var divL = _b.parentNode;
	divL.style.backgroundColor = initC;
}

function _overLeftMenu(e){
	_chColorLM(e, cLeftAc);
}

function _outLeftMenu(e){
	_chColorLM(e, cLeftUn);
}

function _chColorLM(e, initC){
	var _b = _currentElement(e);
	var divL = _b.parentNode;
	divL = divL.parentNode;
	if (divL.tagName == 'TD') divL = divL.parentNode;
	if (divL.className == 'td_color10') return
	divL.style.backgroundColor = initC;
}
