// JavaScript Document

function Zoom(imgName,id,imgWidth,imgHeight,imgDesc, photo_scale) {
if (photo_scale == '4 inch'){
imgWidth = imgWidth+30
imgHeight = imgHeight+30
zoomWindow = window.open('', id, 'width='+imgWidth+',height='+imgHeight+'top=10,left=5,toolbar=0,menubar=0,location=0,scrollbars=0')
zoomWindow.document.write("<html><head><title>Loading Image, Please Wait...<\/title><\/head><body style=\"margin:0px; background-color:#000000;\"><table border=0 cellspacing=0 cellpadding=0><tr><td><img src='..\/images\/ruler_v.gif' width='15' height='655' alt=''><\/td><td align=center><a href='#' onClick=javascript:window.close()><img src='",imgName,"' alt='Click to Close' border='0'><\/a><\/td><\/tr><tr><td><\/td><td><img src='..\/images\/ruler_h.gif' width=655 height=15 alt=''><\/td><\/tr><\/table><\/body><\/html>")
}
if (photo_scale == '8 inch'){
imgWidth = imgWidth+30
imgHeight = imgHeight+30
zoomWindow = window.open('', id, 'width='+imgWidth+',height='+imgHeight+'top=10,left=5,toolbar=0,menubar=0,location=0,scrollbars=0')
zoomWindow.document.write("<html><head><title>Loading Image, Please Wait...<\/title><\/head><body style=\"margin:0px; background-color:#000000;\"><table border=0 cellspacing=0 cellpadding=0><tr><td><img src='..\/images\/ruler_v8.gif' width='15' height='655' alt=''><\/td><td align=center><a href='#' onClick=javascript:window.close()><img src='",imgName,"' alt='Click to Close' border='0'><\/a><\/td><\/tr><tr><td><\/td><td><img src='..\/images\/ruler_h8.gif' width=655 height=15 alt=''><\/td><\/tr><\/table><\/body><\/html>")
}
if (photo_scale == 'Detail'){
zoomWindow = window.open('', id, 'width='+imgWidth+',height='+imgHeight+'top=10,left=5,toolbar=0,menubar=0,location=0,scrollbars=0')
zoomWindow.document.write("<html><head><title>Loading Image, Please Wait...<\/title><\/head><body style=\"margin:0px; background-color:#000000;\"><table border=0 cellspacing=0 cellpadding=0><tr><td align=center><a href='#' onClick=javascript:window.close()><img src='",imgName,"' alt='Click to Close' border='0'><\/a><\/td><\/tr><\/table><\/body><\/html>")
}
zoomWindow.resizeTo(imgWidth,imgHeight)
zoomWindow.focus()
zoomWindow.document.title = "Banker Wire | Wire Mesh "+imgDesc
}


