function findDOM(objectId) {
if (document.getElementById) {
return (document.getElementById(objectId));}
if (document.all) {
return (document.all[objectId]);}
}
function zoom(type,imgx,sz) {
imgd = findDOM(imgx);
if (type=="+" && imgd.width < 1000) {
imgd.width += 12;imgd.height += (11*sz);}
if (type=="-" && imgd.width > 100) {
imgd.width -= 12;imgd.height -= (11*sz);}
}