function popUp(url,width,height,bars) {
	var pop;
	var features;
	if (bars==false){
		features = "height=" + height + ",width=" + width + ",scrollbars=0,resizable=0,toolbar=0,menubar=0";
	}
	else {
		features = "height=" + height + ",width=" + width + ",scrollbars=1,resizable=1,toolbar=1,menubar=1";
	}
	pop = window.open(url, "", features);
	if (window.focus)
	{
		pop.focus();
	}
}
		
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();
	}
}