function openBrWindow(theURL,winName,features) { //v2.0
   window.open(theURL,winName,features);
}

function BOPlaceMark () {                            //v1.1
	var bAgent = window.navigator.userAgent;
	var bAppName = window.navigator.appName;
	if ((bAppName.indexOf("Explorer") >= 0) && (bAgent.indexOf("Mozilla/3") >= 0) && (bAgent.indexOf("Mac") >= 0))
		return true; // dont follow link
	else return false; // dont follow link
}