// JavaScript Document

function v() {
document.getElementById('form_hash').value = '3sfnfuhg84yr8yruidIlLLO00|dfddf'
}

$(document).ready(function() {

	$('#send2user').click(function() {
	$.get('/ajax.php', { touser: $('#touser').val() },
  	 function(data){
    	 $('#send2userbox').html('This form has been sent to: ' + $('#touser').val()) ;
  	 });
	});

});
