function resizeMe()
{
	//var newLeft=(screen.availWidth-maxWidth)/2;
	//var newTop=(screen.availHeight-maxHeight)/2;
	var newLeft=0;
	var newTop=0;

	window.moveTo(newLeft,newTop);

	var maxWidth=screen.width;
	var maxHeight=screen.availHeight;
	//var maxWidth=800;
	//var maxHeight=600;
			
	window.resizeTo(maxWidth,maxHeight);
}