function zoom(img,w,h,n) {
window.open('/zoom/' + img + '.html','' + n + '','width=' + w + ',height=' + h + ',resize=yes,scrollbar=yes;');
}

function $(name) {
if (document.getElementById) return document.getElementById(name);
else if (document.all) return document.all[name];
else return null;
}
