// JavaScript Document
var win = null;
function popit(page, name, w, h, scroll, pos)
{
	if (pos == "center")
	{
		posLeft = (screen.width) ? (screen.width - w) / 2 : 100;
		posTop = (screen.height) ? (screen.height - h) / 2 : 100;
	}
	else
	{
		posLeft = 0;
		posTop = 20;
	}
	settings = 'width=' + w + ',height=' + h + ',top=' + posTop + ',left=' + posLeft + ',scrollbars=' + scroll + ',location=no,directories=no,status=0,menubar=no,toolbar=no,resizable=no';
	win = window.open(page, name, settings);
}