function enlargeScreenshot(the_url, the_height, the_width)
	{
	var window_features = "height=" + the_height + ",width=" + the_width + ",scrollbars,resizable";
	var screenshot_window = window.open(the_url, 'screenshot_window', window_features);
	screenshot_window.moveTo(0,0);
	}

