//=============================================================================
//Program:			Table Style Script
//Version:			1.0
//Date:				3/20/2008
//Last Modified:	3/20/2008
//Author:           Scott Sanders
//=============================================================================
function changeTo(myId) { var theRow = document.getElementById(prefix + myId); if (theRow) { theRow.className = 'rowMain myHighlight'; } }
function changeBack(myId) { var theRow = document.getElementById(prefix + myId);if (theRow) { theRow.className = 'rowMain'; } }
function changeBackDetail(myId) { var theRow = document.getElementById(prefix + myId);if (theRow) { theRow.className = 'rowDetail'; } }  
function changeDetail(myId){var theRow = document.getElementById(prefix + myId);if (theRow) { theRow.className = 'rowDetail myHighlight'; } } 
