//*************************************************************
//
//	Toolbox scripts
//	V1.0 (c) daa Consult EDV Beratung- und Management GesmbH
//
//	done for xyzmo website 2.0
//
//*************************************************************
function setBookmark()
{
	if (document.all)
        {
             // For IE
             window.external.AddFavorite(location.href, document.title);
        }
        else if (window.sidebar)
       	{
             // For Firefox
             window.sidebar.addPanel(document.title, location.href, '');
        }
	return false;
}
function NavTo(url)
{ 
	window.location = url;
	return false;
}

function printMe()
{
	window.print();
	return false;
}


//-------------------------------------------------------------
//
// dynamic text scripts
// 
// extracted from html design dummies 
//
//-------------------------------------------------------------

function setTbText(caption)
{
	var tbTextCtrl = document.getElementById('toolboxinfotext');
	
	if (tbTextCtrl)
	{
		tbTextCtrl.innerHTML = caption;
	}
}

function tbOnFocus(ctrl)
{
	if (ctrl)
	{
		if (ctrl.title)
			setTbText(ctrl.title);
		else
			window.status = 'No title given!';
			
	}
	else
	{
		window.status = 'Control not found!';
	}
}

function tbOnBlur(ctrl)
{
	setTbText('');
}

function tbOnMouseOver(ctrl)
{
	tbOnFocus(ctrl);
}

function tbOnMouseOut(ctrl)
{
	setTbText('');
}