
if (document.getElementById) { window.onload = swap };
function swap() {
var numimages=10;
rndimg = new Array("http://www.rte.ie/dtf/images/bigbg/10.jpg", "http://www.rte.ie/dtf/images/bigbg/9.jpg", "http://www.rte.ie/dtf/images/bigbg/8.jpg", "http://www.rte.ie/dtf/images/bigbg/7.jpg", "http://www.rte.ie/dtf/images/bigbg/6.jpg", "http://www.rte.ie/dtf/images/bigbg/5.jpg", "http://www.rte.ie/dtf/images/bigbg/4.jpg", "http://www.rte.ie/dtf/images/bigbg/3.jpg", "http://www.rte.ie/dtf/images/bigbg/2.jpg", "http://www.rte.ie/dtf/images/bigbg/1.jpg"); 
x=(Math.floor(Math.random()*numimages));
randomimage=(rndimg[x]);
document.getElementById("mainWrapper").style.backgroundImage = "url("+ randomimage +")"; 
}


function showPlayer(url)
{
	var win = window.open(url, "rteplayer", "height=560,width=860,status=yes,toolbar=no,menubar=no,location=no");
	win.focus();
}

