var			Console = 0;
function	popup(mapopup, name, width, height)
{
	if (Console == 0)
		Console = window.open(mapopup, name, width + "," + height + ", toolbar=0, location=0, directories=0, status=0, menubar=0, scrollbars=0, resizable=0");
	Console.focus();
	Console = 0;
}

function	popup_scrol(mapopup, name, width, height)
{
	if (Console == 0)
		Console = window.open(mapopup, name, width + "," + height + ", toolbar=0, location=0, directories=0, status=0, menubar=0, scrollbars=1, resizable=0");
	Console.focus();
	Console = 0;
}

function	popup_scrol_resize(mapopup, name, width, height)
{
	if (Console == 0)
		Console = window.open(mapopup, name, width + "," + height + ", toolbar=0, location=0, directories=0, status=0, menubar=0, scrollbars=1, resizable=1");
	Console.focus();
	Console = 0;
}

