this is actually javascript, you cannot do this with php:
window.open("file.html",'WindowName',"FullScreen","top=0,left=0,directories=no,scrollbars=yes,menu=no,status=no,toolbar=0,resizable=no,location=no,width="+screen.width+",height="+screen.height)}
this will open a fullscreen window without any bars. for bars delete fullscreen and set 0 to 1 or "yes". set the whole code into a function and call it from a button:
<INPUT onclick="javascript:functionname()" type=button value="name of the button">