$(function(){
	var targetField = $('#ctl01_MessageTextBox'),
		urlStr = window.location.href;
	urlStr = decodeURI(urlStr.replace(/^.*?formValue=([^&]*).*?$/gi,'$1'));
	targetField.val(urlStr);
});

