
/* 10News.com scripts */
// Begin national js scripts


/*
Decode hex string to ascii string
*/
function decodeHex(msg) {
	var str = msg.split(",");
	var result = '';
	/* Decode the hex */
	for (i=0; i<str.length; i++) {	
		result = result + String.fromCharCode(str[i]);		
	}
	return result;
}


// End national_js scripts


