// JavaScript Document

function Zoom(imgName,id,imgWidth,imgHeight,imgDesc) {
 
zoomWindow = window.open('', id, 'width='+(imgWidth)+',height='+(imgHeight+75)+'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; color:#FFFFFF;\"><a href='#' onClick =javascript:window.close()><img src='",imgName,"' alt='Click to Close' border='0'><\/a><br><div style=\"padding:5px; font-weight:bold;\" align=center>"+imgDesc+"<\/div><\/body><\/html>")
zoomWindow.focus()
zoomWindow.document.title = "Bieck Management : "+imgDesc
}


