
function GetTrackbackURL( url, aid, targetID, noticeID ){
	var input = document.getElementById( targetID );
	var notice = document.getElementById( noticeID );

	var http = new JKL.ParseXML( url, "aid=" + aid );
	var func = function( data ){
		input.value = data.trackback.url;
		notice.style.display = "inline";
	}

	http.async( func );
	http.parse();
}

function ShowTrackbackURLNotice( noticeID ){
	var notice = document.getElementById( noticeID );

	notice.style.display = "inline";
}
