function open_window(link,w,h) //opens new window
{
    var win = "width="+w+",height="+h+",menubar=no,location=no,resizable=yes,scrollbars=yes";
    newWin = window.open("popup.php?target="+link,'newWin',win);
    newWin.focus();
}
function open_windowt(link,w,h,path) //opens new window
{
    var win = "width="+w+",height="+h+",menubar=no,location=no,resizable=yes,scrollbars=yes";
    newWin = window.open(path+"popup.php?target="+link,'newWin',win);
    newWin.focus();
}
function open_windowf(link,w,h) //opens new window
{
    var win = "width="+w+",height="+h+",menubar=no,location=no,resizable=yes,scrollbars=yes";
    newWin = window.open("http://"+location.host+"/popup.php?target="+link,'newWin',win);
    newWin.focus();
}

function changeBarover (dd, dq)
{
	document.getElementById(dd).style.backgroundColor = '#eeeeee';
	document.getElementById(dq).style.color =  '#000000';
}
function changeBarout (dd,dq)
{
	document.getElementById(dd).style.backgroundColor = '#60bd25';
	document.getElementById(dq).style.color =  '#24211d';
}

function droptext (object)
{
	object = document.getElementById (object);
	if ( !object.style )
	{
		return false;
	}

	if( object.style.display == 'none' )
	{
		object.style.display = '';
	}
	else
	{
		object.style.display = 'none';
	}
}