  <!--Comment from older browsers

function CenterNewWindow(winame,file,h,w) {
var winl = (screen.width - w) / 2;
var wint = (screen.height - h) / 2;
winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars='+scroll+',resizable'
win = window.open(file, winame, winprops)
if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); }
}

function openwin(winame,file,height,width,left,top)  {window.open(file,winame,"status=no,scrollbar=auto,toolbar=no,location=no,menu=no,width="+width+",height="+height+",left="+left+",top="+top);
}

function goHome(){   //for IE 4 on the mac
	window.top.location='http:\/\/www.climbrockisland.com';
}
  // -->

