function doPopUpNoMenu()
{
	// get the arguments
	url = arguments[0];
	if (arguments[1] == "" || arguments[1] == null)
		wid = 700;
	else
		wid = arguments[1];
	if (arguments[2] == "" || arguments[2] == null)
		hih = 600;
	else
		hih = arguments[2];
	if (arguments[3] == "" || arguments[3] == null)
		x = -1;
	else
		x = arguments[3];
	if (arguments[4] == "" || arguments[4] == null)
		y = -1;
	else
		y = arguments[4];

	// display the window
	newwindow=window.open(url,"", "toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=1,width="+wid+",height="+hih);

	// check for location setting
	if ((x>0) && (y>0)) newwindow.moveTo(x,y);

	// make sure the popup has the focus
	newwindow.focus();
	return false;
}

function MM_openBrWindow(theURL,winName,features)
{
  window.open(theURL,winName,features);
}

