function use(what) {
	msg = '<body bgcolor="white"><font face="Arial" color="black" size=2>'+what+'<br><hr><font face="Arial" color="black" size=1>Away Message by <b><a href="http://www.TotalAIM.com/">TotalAIM.com</a></b>';
	msg = msg.replace(/&/g,"&amp;");
	msg = msg.replace(/ /g,"+");
	if (msg.length > 450) alert("This message is too long to set as an away message automatically. Please copy and paste the message into AIM in order to use it.");
	else location.href = "aim:goaway?message=" + msg.substring(0,450);
}