function setfullscreen(){
	player.fullScreen=true;
}
function window_onresize() {
	player.width = window.document.body.offsetWidth;
	player.height = window.document.body.offsetHeight;
	fullLayer.style.left=window.document.body.clientWidth-130+"px";
	fullLayer.style.top=window.document.body.clientHeight-29+"px";			
}
window.onresize=window_onresize;