//30.01.2009, 01.02.2009

//30.01.2009
//----- Button Navigation Calendar -------------------------------------------------------------
function Jsc_Bnc(jsCmd)
{
	window.document.forms[0].FrmCommand.value = jsCmd;
	document.forms[0].submit();
}

//01.02.2009
//----- Ermittlung von Mausposition ------------------------------------------------------------
function Jsc_MousePos(e)
{
	xPos = e? e.pageX : window.event.x;
	yPos = e? e.pageY : window.event.y;
}

//01.02.2009
//----- Tooltip --------------------------------------------------------------------------------
function Jsc_Tt(jsText)
{
	if (jsText.length > 0)
	{
		window.document.getElementById("TT").style.left = xPos+5+"px";
		window.document.getElementById("TT").style.top = yPos+5+"px";
		
		window.document.getElementById("TT").style.visibility = "visible";
		window.document.getElementById("TT").innerHTML = jsText;
	}
	else
	{
		window.document.getElementById("TT").style.visibility = "hidden";
		window.document.getElementById("TT").innerHTML = "";
	}
}
