function openwin(url, name, options) {
      var win = window.open(url, name, options);}
// End -->

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

function NewWindow(mypage, myname, w, h, scroll) {
var winl = (screen.width - w) / 2;
var wint = (screen.height - h) / 2;
winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars='+scroll+',resizable=yes'
win = window.open(mypage, myname, winprops)
if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); }
}

function addbookmark(sUrl,sTitle) {

	var netscape="Press OK and then hit CTRL+D to add a bookmark to this site."

	if(navigator.appName=='Microsoft Internet Explorer') {
			window.external.AddFavorite(sUrl, sTitle + ' odds comparison');
			}
		else if(navigator.appName=='Netscape') {
			alert(netscape);
			}
}

function MM_jumpMenu(targ,selObj,restore){ //v3.0
  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}

function makevisible(cur,ie,moz){
if (cur.style.MozOpacity)
cur.style.MozOpacity=moz
else if (cur.filters)
cur.filters.alpha.opacity=ie
}
