function doPop(imageName, imageWidth, imageHeight, windowHeight)	{
	var winHeight = imageHeight;
	var winWidth = imageWidth + 20;
	var openWindow = window.open('http://www.designforhomes.org/dvd_popup.php?image=' + imageName + '&width=' + winWidth + '&height=' + winHeight, 'Design4HomesDVD', 'location=0,toolbar=0,history=0,height=' + windowHeight + ',width=' + winWidth + ',resizable=1,scrollbars=1');
	openWindow.focus();
}