function popup_win(page, w, h, s)
{
	if (!w || w=="")
	{
		w = 266;
	}
	if (!h || h=="")
	{
		h = 400;
	}
	if (!s || s=="")
	{
		s = 0;
	}
	window.open(page, "popup", "scrollbars=" + s + ", width=" + w + ",height=" + h + ",noresize,top=20,right=10");
}
