<!-- Begin
function snowcam(mypage, myname, w, h, scroll) {
var winl = (screen.width - w) / 3;
var wint = (screen.height - h) / 6;
winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars='+scroll+',noresize'
win = window.open(mypage, myname, winprops)
if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); }
}

function othercams(mypage, myname, w, h, scroll) {
var winl = (screen.width - w) / 6;
var wint = (screen.height - h) / 6;
winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars=yes,resizable=yes,filemenu=yes,location=yes,directories=yes,status=yes,menubar=yes'
win = window.open(mypage, myname, winprops)
if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); }
}


//  End -->
