function open_fullscreen_window(target_url)
{
	var sc_width = screen.width;
	var sc_height = screen.height;
	window.open(target_url, 'fullscreen_window', 'width=' + sc_width + ', height=' + sc_height + ', toolbar=no, location=no');
}