<!--
// Version: 1.0
// Modify date: 15-nov-2002, Marco Smeets
//
// Setting the windows screen to maximum as possible !

function Full_Screen()
{
	if (window.screen)
	{
	// Set the resolution of the users browser to the maximum available screen width and height
	    window.moveTo(0,0);
	    window.resizeTo(screen.availWidth,screen.availHeight);
	}
}
//-->