/*

This Javascript Source Code is Intellectual Property owned by FrostyLabs LLC. 
You may not do any of the following without prior written permission by FrostyLabs LLC, and not limited to:

duplicate or reuse the Service, Source Code, or any portion of it.
sell, resell, trade, or transfer ownership of the Service or any portion of it. 
take advantage of the Source Code for any profitable purposes.

This property of FrostyLabs LLC is protected through all appropriate laws.

If you have any questions please contact www.FrostyLabs.com

*/

function glow(sField, sColor){
	try{
		var oField = document.getElementById(sField);
		oField.style.color = sColor;
	}catch(e){
//		alert("Document Object Does Not Exists " + sField);
	}
}

function glowBG(sField, sColor){
	try{
		var oField = document.getElementById(sField);
		oField.style.backgroundColor = sColor;
	}catch(e){
//		alert("Document Object Does Not Exists " + sField);
	}
}
