function openwindow(url, wName, width, height)
{
	x = 100;
	y = 100;

	option =
		"toolbar=no,location=no,personalbar=no,menubar=no,scrollbars=no,resizable=no,status=no" +
		",width=" + width + ",height=" + height +
		",left=" + x + ",top=" + y;
	a = window.open(url, wName, option);
	a.focus();
}

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