function fullscreen(url) {
    magWidth = screen.availWidth-10;
    magHeight = screen.availHeight-30;

	magWnd = open(url,"myWin","width=" + magWidth + ",height=" + magHeight + ",location=no,menubar=no,left=0,top=0,screenX=0,screenY=0,resizable=yes,scrollbars=auto,status=no,toolbar=no");
	magWnd.document.title = "FullScreen";
	magWnd.focus();

}
