function openBrWindow(theURL,winName,features) { //v2.0
	var mine = window.open(theURL,winName,features);
	if(mine)
		var popUpsBlocked = false
	else
		var popUpsBlocked = true

	if(popUpsBlocked)
		window.location=theURL
}