function getUrl(){
	var URL = unescape(window.document.location);
	document.getElementById('url').value = URL;
}

function getMessage(){
	var URL_1 = unescape(window.document.location);
	
	if (URL_1.indexOf("?") > -1) {
		var m = (((URL_1.split("?="))[1]).split ("="))[1];
		document.getElementById('message').innerHTML = m.replace(/-/g," ");
	}
}