function openBrWindow(theURL, winName, features){
	var newwin;
	newWin= window.open (theURL, winName, features);
    newwin.focus();
	}
