function MM_openBrWindow(theURL) { //v2.0
	winName  = "WIN";
	features = "toolbar=yes,location=yes,status=yes,menubar=yes,scrollbars=yes,resizable=yes,width=625,height=450";
	var newWin;
	newWin = window.open(theURL,winName,features);
	newWin.moveTo(0,0) ;
	newWin.focus();
}

