
//
// XHTML alternatives to "_blank"
// browser window _with_ toolbars etc.
//
function popitup(URL, name, widthpx, heightpx)
{
//	newwindow = window.open(URL, name, "width=" + widthpx + ",height=" + heightpx + ", menubar=yes, navigation=yes, location=yes, toolbar=yes, directories=yes, resizable=yes, scrollbars=yes, status=yes");
	newwindow = window.open(URL, name);
	if (window.focus)
	{
	  newwindow.focus()
  }

	return (false);
}


//
// XHTML alternatives to "_blank"
// browser window _without_ toolbars etc.
//
function popitup_toolwindow(URL, name, widthpx, heightpx)
{
	newwindow = window.open(URL, name, "width=" + widthpx + ",height=" + heightpx + ", menubar=no, navigation=no, location=no, toolbar=no, directories=no, resizable=no, scrollbars=yes, status=no");
	if (window.focus)
	{
	  newwindow.focus()
  }

	return (false);
}

