Hows this done?

http://www.workinprog.com/#

when u enter the site all the internett explorer buttons dissapear. hows that done? is it hard?
And is it hard to make my homepage fullscreen?

thanx

i believe its basic html. im no good with HTML so im not much help

I think its javascript, because its basically like a pop up right?

that’s right, it is javascript, popup, this javascript :


 window.open(URL,Name,status=yes,resizable=yes,width=500,height=500');

(change the url and the name)

to resize the window:


window.moveTo(0,0);
	if (document.all) {
	top.window.resizeTo(screen.availWidth,screen.availHeight);
	}
	else if (document.layers||document.getElementById) {
	if (top.window.outerHeight<screen.availHeight||top.window.outerWidth<screen.availWidth){
	top.window.outerHeight = screen.availHeight;
	top.window.outerWidth = screen.availWidth;
	}
}