function getYurlp() {
do_yurlp = "do/" + dojo.byId('content').value
dojo.xhrGet ({
    // Location of the HTML content we want to grab
    url: do_yurlp,

    // Called when the page loaded successfully
    load: function (data) {
    	resp = "<ul><li><a href='" + data + "'>" + data + "</a></li>"
    	parts = data.split("/")
    	data = parts[0] + "//" + parts[2] + "/x/" + parts[3]
    	resp += "<li><a href='" + data + "'>" + data + "</a><small> (as html)</small></li>"
    	resp += "</ul>"
        dojo.byId('html-content').innerHTML = resp;
    },

    // Called if there was an error (such as a 404 response)
    error: function (data) {
        console.error('Error: ', data);
    }
});	
}
