function fullbrowser()
{
	v = document.getElementById("player"); //.cloneNode(true);
	v.style.position = "fixed";
	v.style.left = "0px";
	v.style.top = "0px";
	v.style.width = "100%";
	v.style.height = "100%";
	v.childNodes[0].width = "100%";
	v.childNodes[0].height = "100%";

	d = document.getElementById("HEADER");
	d.parentNode.removeChild(d);
	//d = document.getElementById("CONTENT");
	//d.parentNode.removeChild(d);
	d = document.getElementById("FOOTER");
	d.parentNode.removeChild(d);

	//document.getElementById("PAGE").appendChild(v);

	document.body.style.overflow = "hidden";
}
