var intOldRow = 0
function hiliteElems(rowName, rowInt, hiliteColor, oldColor, hiliteFontColor, oldFontColor)
{
	var aNewRow = document.getElementsByName(rowName + rowInt)
	//var aNewRow = document.getElementById(rowName + rowInt)
	if(intOldRow)
	{
		var aOldRow = document.getElementsByName(rowName + intOldRow)
	}
	
	if(intOldRow != rowInt)
	{
		
		for(x=0;x<aNewRow.length;x++)
		{
			aNewRow[x].style.background = hiliteColor
			aNewRow[x].style.color = hiliteFontColor
			

			if(intOldRow)
			{
				aOldRow[x].style.background = oldColor
				aOldRow[x].style.color = oldFontColor
			}
			
		}
		intOldRow = rowInt
	}
}

function setFrameSrc(ifrmID, strLocation)
{
	//Function should be able to access any IFRAME on website as it should get the element from the TOP of the DOM
	top.document.getElementById(ifrmID).src = strLocation
}