<!--
function imgDisplayPopup(imgSrc, productType)
{
	var frameName = imgSrc.split("-");
	newImgURL = "http://realestate.netbiz.com/_includes/imgPreview.php?imgSrc="+imgSrc+"&productType="+productType;
	imgWindow = window.open(newImgURL, frameName[1], 'height=630px, width=680px, toolbar=no, scrollbars=yes, menubar=no, resizable=no, left=100px, top=80px, screenX=100px, screenY=80px');
	if (window.focus)
	{
		imgWindow.focus();
	}
}
-->