function popupImage(imgSrc)
{
 window.open (imgSrc,
"mywindow","resizable=1,location=1,status=1,scrollbars=1,width=500,height=500")
}

function openWindow(url)
{
 window.open (url, "mywindow");
}

function displayPrice(div, priceText)
{
	div.innerHTML = priceText;
}