/*====================================================================*/
function enlargeImg(imageSrc) {
ns=(document.layers)?true:false
if(ns) {
	window.open("imgEnlarge.asp?image="+imageSrc,"PicWin","width=600, height = 420, status=no,scrollbars=no,resizable=yes,toolbar=no,menubar=no,location=no",true);
} else {
	window.open("imgEnlarge.asp?image="+imageSrc,"PicWin","width=600, height = 420, status=no,scrollbars=no,resizable=no,toolbar=no,menubar=no,location=no",true);
}
}
/*====================================================================*/
