$(document).ready(function() {
	$("#username").click(function() { 
		var currentValue = $("#username").val();
		if(currentValue == emptytext) {
			$("#username").val("");
		}	
	});

});

$(document).ajaxStart(function() { 
	$("#replyc").html("Generating your signature...");
});

function Request() {
	var currentvalue = $("#username").val();
	$.post("includes/request.php", { username: currentvalue } , function(data) { 
		$("#replyc").html(data);
	});
}

function toggleDisplay(eleId){
   var dsp = document.getElementById(eleId);

	 dsp.style.display = (dsp.style.display == "none") ? "block" : "none";
}
