// JavaScript Document
function fullScreen(page) {
	w = screen.width;
	h	= screen.height;
	myPopup = window.open(page,'popup','top=0, left=0, width='+w+', height='+h+', scrollbars=yes');	
	myPopup.focus();
}

