/* Copyright 2009 A-Team Productions */

var UpdateDivColor;

function UpdateDiv( DivName, URL, Message )
	{
	//document.getElementById(DivName).innerHTML='<div class=\'MsgDynLoading\'><img src=\'\/images\/status\/working.gif\' alt=\'loading icon\' \/><p>Fetching ' + Message + ', one moment ... <\/p><\/div>';
	UpdateDivOldColor = document.getElementById(DivName).style.color;
	document.getElementById(DivName).style.color="#AEAEAE";

	new Ajax.Updater(DivName, URL, { method: 'get', evalScripts: true });
	}

function FadeInDiv( DivName )
	{
	document.getElementById(DivName).style.color = UpdateDivOldColor;
	}


var oldClassName = '';

function TableRollover ( object )
	{
	oldClassName = object.className;
	if ( oldClassName != 'TDD1' ) 
		{
		object.className='Rollover1TR';
		}
	else
		{
		object.className='Rollover2TR';
		//alert('Classname = [' + oldClassName + ']');
		}
	}
function TableRollout ( object )
	{
	//object.className='TDD1';
	object.className = oldClassName;
	}
