function CommonPopup(url, width, height, wndname, scrollbars)
{
	if(scrollbars == 1)
	{
		scrollbars = "yes";
	}
	else
	{
		scrollbars = "no";
	}

	wnd = window.open(url, wndname, 'toolbar=no, resizable=no, menubar=no, location=no, status=no, scrollbars =' + scrollbars + ', width =' + width + ', height =' + height + ', left=100, top=100, alwaysRaised=true');
	wnd.focus();

	if (wnd.opener == null)
	{ 
		wnd.opener = self;
	}
}

