function get_page(id,page) {
	document.getElementById(id).action = document.getElementById(id).action + '&page=' + page;
	document.getElementById(id).send.click();
}
function get_page_id(id,page,eid,type) {
	document.getElementById(id).action = document.getElementById(id).action + '&dsp=' + type + '&page=' + page + '&id=' + eid + '&type=' + type;
	document.getElementById(id).send.click();
}
function get_menu_multi_select(index) {
	if (index != 0) window.location='index.cfm?multi='+index;
}
function Class_img(id,src) {
	document.getElementById(id).src = src;
}
function Desc_ViewHide(id) {

	// show
	if (document.getElementById('desc_' + id).style.visibility != 'visible') {

		with (document.getElementById('desc_' + id).style) {
			position = 'relative';
			visibility = 'visible';
		}
		document.getElementById('desc_access_' + id).innerHTML = '-'

	// hidde
	} else {

		with (document.getElementById('desc_' + id).style) {
			position = 'absolute';
			visibility = 'hidden';
		}
		document.getElementById('desc_access_' + id).innerHTML = '+'

	}

}
function country_show(id,show) {
	document.getElementById('menu_country_' + id).style.visibility = 'visible';
	document.getElementById('menu_country_show').innerHTML = show;
	with (document.getElementById('menu_country_show').style) {
//		borderTopColor = '#D26A1E';
		backgroundColor = '#efefef';
	}
}
function country_hide(id,show) {
	document.getElementById('menu_country_' + id).style.visibility = 'hidden';
	document.getElementById('menu_country_show').innerHTML = show;
	with (document.getElementById('menu_country_show').style) {
//		borderTopColor = '#fff';
		backgroundColor = '#fff';
	}
}

function Entity_ViewHide(id) {

	// show
	if (document.getElementById('dsp_' + id).style.display != 'block') {
		with (document.getElementById('dsp_' + id).style) {
			display = 'block';
		}
	// hide
	} else {
		with (document.getElementById('dsp_' + id).style) {
			display = 'none';
		}
	}

}
