function closeWindowLink(){
	if(!document.getElementById) return false;
	var closetag = document.getElementById("close-window");
	if(closetag){
		var closelinktext = document.createTextNode("Close this window");
		closetag.appendChild(closelinktext);
	}
}

bbcjs.addOnLoadItem(closeWindowLink);

function openBackgroundPage(bgUrl) {
	opener.location=bgUrl;
	return false;
}