function showPic (whichpic) {

if (document.getElementById) {

	var product_el = document.getElementById('product');
	var icon = document.getElementById('icon');
	var desc_el = document.getElementById('desc');
	var price_el = document.getElementById('price');

	var price = whichpic.getAttribute('price');
	var desc = whichpic.getAttribute('desc'); 
	

	if (product_el) {

		product_el.className="product hidden";
}

	document.getElementById('placeholder').src = whichpic.href;
	
	if (icon !== null) {
		icon.parentNode.removeChild(icon);
	}
	 
	
	if (desc_el !== null) {

		if (desc !== null) {		
   			document.getElementById('desc').childNodes[0].nodeValue = desc;
  		} 
	
		else {
			document.getElementById('desc').childNodes[0].nodeValue = ' ';
		}
	}					
	
	if (whichpic.title) {
		document.getElementById('title').childNodes[0].nodeValue = whichpic.title;
  	
	} 
		
	
	if (price_el !== null) {

		if (price!== null) {
			product.className="product shown";

			document.getElementById('price').setAttribute				('googlecart-set-product-price', price);
			document.getElementById('price').childNodes				[0].nodeValue 		= price;
		
			document.getElementById('product-title').childNodes			[0].nodeValue = whichpic.title;
	
		}
	}	
}		
		 	
  	return false;
 	 
}