<!--
function sendMsg(id, m)
{
	var w = 680;
	var h = 500;
	var winl = (screen.width-w)/2;
	var wint = (screen.height-h)/2;
	features = "left="+winl+",top="+wint+",screenX=300,screenY=40,width="+w+",height="+h+",scrollbars=no,resizable=no";
	url = "sendmsg.php?id=" + id + "&m=" + m;
	window.open(url, "msg", features);
}
//-->	
