<!--
////////////////////////////////////
//Roxspin
//webmaster@roxspin.com
////////////////////////////////////

////////////////////////////////////
//GENERAL
////////////////////////////////////

//ZOOM
function zoom(imgName,winName,imgWidth,imgHeight){
zoomWindow = window.open('', winName, 'width='+imgWidth+',height='+imgHeight+'top=5,left=5,toolbar=0,menubar=0,location=0,scrollbars=1,resizable=yes')
zoomWindow.document.write("<html><head><title>Loading Image, Please Wait...<\/title><\/head><body bgcolor='#244F8F' leftmargin='0' rightmargin='0' topmargin='0' bottommargin='0' onBlur='window.close()'><table border='0' align='center' width='100%' height='100%'><tr><td align='center'><a href='#' onClick='javascript:window.close()'><img src='",imgName,"' alt='Click to Close' border='0'><\/td><\/tr><\/table><\/a><\/body><\/html>")
zoomWindow.focus()
zoomWindow.window.resizeTo(imgWidth, imgHeight);
zoomWindow.document.title = "Roxspin" 
}

//-->
