function openFullscreen(url) {
	var fullscreenWidth = screen.availWidth;
	var fullscreenHeight = screen.availHeight;

	var fullWindow = window.open(url,'Fullscreen','width=' + fullscreenWidth + ',height=' + fullscreenHeight + ', resizable=yes,status=yes,top=0,left=0,scrollbars=1');

	void(0);
	fullWindow.focus();
}
