window.onload = add_div;
function add_div()
{
    var div = document.createElement('div');
    div.id = 'award_html_code';
    document.body.appendChild(div);
}


function show_award_html(award_id, prog_id)
{
	var div = document.getElementById('award_html_code');

	new Ajax.Request('/ajax/award.php?prog_id=' + prog_id + "&award_id=" + award_id,
		{
			method: "GET",
			onSuccess: function(transport)
			{
			    div.innerHTML =  transport.responseText;
			    div.style.display = 'block';
			}
		}
	);
}

function close_award_html()
{
	var div = document.getElementById('award_html_code');
	div.style.display = 'none';
}