<!--

function InitializeGlobalData()
{
	if ('undefined' != typeof(strRtl))
		strIsRtl = strRtl;

	var divs = document.body.getElementsByTagName("DIV");
	var spans = document.body.getElementsByTagName("SPAN");

	var countDiv = 0;
	var countSpan = 0;
	if (typeof(divs) != "undefined" && null != divs)
		countDiv = divs.length;

	if (typeof(spans) != "undefined" && null != spans)
		countSpan = spans.length;

	allDivsInPage = new Array();
	for (i=0; i < countDiv; i++)
		if (typeof(divs[i].id) != "undefined" &&
			null != divs[i].id &&
			divs[i].id.length > 0)
			allDivsInPage[divs[i].id] = divs[i];

	for (i=0; i < countSpan; i++)
		if (typeof(spans[i].id) != "undefined" &&
			null != spans[i].id &&
			spans[i].id.length > 0)
			allDivsInPage[spans[i].id] = spans[i];

}

function ExpandDiv(theDivName)
{
	InitializeGlobalData(); 

	if (null == theDivName || typeof(theDivName) == "undefined") return; var theDiv = allDivsInPage[theDivName]; if (null == theDiv || typeof(theDiv) == "undefined") return;
	theDiv.style.display = "block";

}

function CollapseDiv(theDivName)
{
	InitializeGlobalData();

	if (null == theDivName || typeof(theDivName) == "undefined") return; var theDiv = allDivsInPage[theDivName]; if (null == theDiv || typeof(theDiv) == "undefined") return;
	theDiv.style.display = "none";

}

function ToggleDiv(theDivName)
{
	InitializeGlobalData();

	if (null == theDivName || typeof(theDivName) == "undefined") return; 
	var theDiv = allDivsInPage[theDivName]; 
	if (null == theDiv || typeof(theDiv) == "undefined") return;

	if (theDiv.style.display.toUpperCase() != "BLOCK")
		ExpandDiv(theDivName);
	else
		CollapseDiv(theDivName);
}

function SwapDiv(selected) {
	for (var i = 1; i < arguments.length ; i++ ) {
		theDiv = document.getElementById(arguments[i])
		if (arguments[i] == selected) {
			theDiv.style.display = "block"
		} else {
			theDiv.style.display = "none"
		}
	}
}

function showBalloon(BalloonID,x,y){
	if(navigator.appName == "Microsoft Internet Explorer"){
		document.getElementById(BalloonID).style.left = (document.body.scrollLeft + x) + 5;
		document.getElementById(BalloonID).style.top = (document.body.scrollTop + y) +5;
		document.getElementById(BalloonID).style.visibility = "visible";
	}else{
		document.getElementById(BalloonID).style.left =x + 5;
		document.getElementById(BalloonID).style.top = y;
		document.getElementById(BalloonID).style.visibility = "visible";
	}
}

function hideBalloon(BalloonID){
	document.getElementById(BalloonID).style.visibility = "hidden";
}

function PopWindow(ObjName, URL,W,H) {
	var Winsize = "alwaysRaised=yes, scrollbars=yes, status=yes, resizable=yes, width=" + W + ", height=" + H
	window.open(URL, ObjName, Winsize)
}

function PopSmallWindow(URL) {
	var Winsize = "alwaysRaised=yes, scrollbars=no, status=yes, resizable=yes, width=480, height=360"
	window.open(URL, '_blank', Winsize)
}

function TrimString(sInString) {
	sInString = sInString.replace( /^\s+/g, "" );// strip leading
	return sInString.replace( /\s+$/g, "" );// strip trailing
}
// -->
