//---------------------------
function BildPopup(link,name,toolbar,menubar,width,height)
{
	window.open(link,name,'toolbar=' + toolbar +',location=no,directories=no,status=no, menubar=' + menubar + ',scrollbars=no,resizable=no,copyhistory=no,width=' + width +',height=' +height);
}
function Popup(link,toolbar,menubar,width,height)
{
	BildPopup(link,'popup',toolbar,menubar,width,height);
}
//---------------------------
function showmenu(elmnt,elm_addr)
{
	the_menu = document.getElementById(elmnt);
	if(the_menu) the_menu.style.visibility = 'visible';
	//the_menu.style.top = 100;
	//the_menu.style.left = 100;
	//document.all(elmnt).style.visibility="visible";
	elm_addr.style.color = "#FFFFFF";
	elm_addr.style.backgroundColor = "#000000";
}
function hidemenu(elmnt,elm_addr)
{
	the_menu = document.getElementById(elmnt);
	if(the_menu) the_menu.style.visibility = 'hidden';
	//document.all(elmnt).style.visibility="hidden";
	elm_addr.style.color = "#606060";
	elm_addr.style.backgroundColor = "#FFFFFF";
}
//---------------------------
function do_select(elmnt)
{
	elmnt.style.color = "#FFFFFF";
	elmnt.style.backgroundColor = "#000000";
}
function do_deselect(elmnt)
{
	elmnt.style.color = "#606060";
	elmnt.style.backgroundColor = "#FFFFFF";
}
function do_click(elmnt,thelink)
{
	elmnt.style.color = "#FFFFFF";
	elmnt.style.backgroundColor = "#FF0000";
	//alert(thelink);
	if(thelink!='') window.location = thelink;
}
//---------------------------
