function contestLoad(contest,container)
{
	var iFrame = document.createElement('iframe');
	var id = 'iframe-' + contest;
	iFrame.setAttribute('id', id);
	iFrame.setAttribute('width', '100%');
	iFrame.setAttribute('height', '400');
	iFrame.setAttribute('scrolling', 'auto');
	iFrame.setAttribute('frameBorder', '0');
	iFrame.setAttribute('src', '/wp-content/contests/' + contest + '.php');
	document.getElementById(container).appendChild(iFrame);
	//setTimeout("sizeIframe('" + id + "')",10);
}

function sizeIframe(id)
{
	document.getElementById(id).style.height=document.getElementById(id).contentWindow.document.body.scrollHeight;
}

function display(id)
{
	document.getElementById(id).style.display = (document.getElementById(id).style.display == 'block') ? 'none' : 'block';
}