function emptyUrlBox(){
	box = document.getElementById('url_box');
	if(box.value == "paste/type your long url here..."){
		box.value="";
	}
}
function selectShortUrl(){
	document.getElementById('smallified_url').select();
}
