
function maximisewindow()
{
	var w = screen.availWidth||screen.width;
	var h = screen.availHeight||screen.height;
	window.moveTo( 0, 0 );
	window.resizeTo( w, h );
}
function maximisemodule()
{
	alert(screen.width);
	var w = screen.availWidth||screen.width;
	var h = screen.availHeight||screen.height;
	document.getElementById( 'module' ).style.width = ( w - 10 ) + "px";
	document.getElementById( 'module' ).style.height = ( h - 60 ) + "px";
}
