function createLargeImage(thisImage)	{


		if (thisImage.getAttribute("pictureStyle") == "enlarge") {


		var finalWidth = parseInt(thisImage.getAttribute("xpix")) + 80
		var finalHeight = parseInt(thisImage.getAttribute("ypix")) + 210


		var screenRes = window.screen.width /2

		var viewerScreen = window.screen.width

		var leftAnchor = screenRes - (finalWidth / 2)

		var thisSign = "product_display.asp?id=" + thisImage.getAttribute("clientRef")

		var newWin = window.open("","","status=no,toolbar=no,title=no,location=no,scrollbars=yes,resizable=yes,screenX=100,left=" + leftAnchor + ", top=0")
		
		newWin.window.resizeTo(finalWidth,finalHeight)

		newWin.location = thisSign

		newWin.document.close()
		
			
		}

		// return false to prevent the href value in the original <a> tag from being followed
		return false;

}


