$(document).ready(function() { 

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

});

$(document).ajaxStart(function() { 
	$("#replyc").html("Image being generated&nbsp;<img src='i/ajax-loader.gif'>");
});

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

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

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