function MM_openBrWindow(theURL,winName,features) { //v2.0
  TP_newWindow=window.open(theURL,winName,features);
  TP_newWindow.moveTo(30,30);
}

// Sets the window's status text.
function setStatusText(msg) {
	window.status = msg;
	return true;
}

// Clears the window's status text.
function clearStatusText() {
	window.status = window.defaultStatus;
	return true;
}