function hello_there() {
	alert("Hello There");
}
function ord( string ) {
    return (string+'').charCodeAt(0);
}
function chr( val ) {
    return String(String.fromCharCode(parseInt(Math.abs(1*val))));
}

