<!--
defaultStatus = '';

function On( imgName )
{
	if ( document.images )  
	{
		document.images[imgName].src = eval(imgName + "on.src");
	}
}

function Off( imgName ) 
{
	if ( document.images )
	{
		document.images[imgName].src = eval(imgName + "off.src");
	}
	window.status = defaultStatus;
}

function redirect( pulldown )
{
	var newLocation = pulldown[pulldown.selectedIndex].value;
	if ( newLocation != "" )
	{
		self.location = newLocation;
	}
}

// Collapse and Expand Text
function blocking(tag)
{
	if (document.getElementById) //  Netscape, Mozilla, etc.
	{
		var state = document.getElementById(tag).style.display;
	}
	else if (document.all)      //  IE, Konqueror, etc.
	{
		var state = document.all[tag].style.display;
	}

	var newState = "";

	if ( state == "block")
	{
		newState = "none";
	} else {
		newState = "block";
	}
	if (document.getElementById)
	{
		document.getElementById(tag).style.display = newState;
	}
	else if (document.all)
	{
		document.all[tag].style.display = newState;
	}
}


function OpenScrollingPopup(URL, width, height, DES)
{
//	window.self.name = "main";
	var now = new Date();
	var remote = window.open(URL, "popup" + now.getTime(), "width=" + width + ",height=" + height + ", toolbar=0, location=0,diretories=0,resizable=1,bgcolor=white,status=0,top=0,left=0,menubar=0,scrollbars=YES");
	if(navigator.appVersion.indexOf("MSIE 3") < 0)
		remote.focus();
}

//-->

