function openWindow (earl,name,widgets) {
	host = location.hostname;
	if (host.indexOf('nwo') != -1) {
		var url = 'http://www.goanywhere.com' + earl;
		} else {
			var url = earl;
			}
	popupWin = window.open (url,name,widgets);
	popupWin.opener.top.name="opener";
	popupWin.focus();
	}
function MM_displayStatusMsg(msgStr) {
  status=msgStr;
  document.MM_returnValue = true;
}
function randomNum(n1, n2) {
if (arguments.length == 2) {
        if (n2 > n1) {
        return (Math.round(Math.random()*(n2-n1))+n1) ;
        } else {
        return (Math.round(Math.random()*(n1-n2))+n2) ;
        }
        } else {
        return (Math.round(Math.random()*n1)) ;
        }
    }
