function showPicture(pic, w, h, caption, status) {
	  document.getElementById('pic').src = pic;
	  document.getElementById('pic').width = w;
	  document.getElementById('pic').height = h;
	  var status_txt = "";
	  if (status=="S") {
		status_txt = '<span class="Title1">- Sold -</span>';
	  } else if (status=="A") {
		status_txt = '<a href="contact.htm" class="submenu">Request Price</a>';
	  } else if (status=="P") {
		status_txt = '<span class="Title1">Private Collection</span>';
	  } else if (status=="NAFA") {
		status_txt = '<span class="Title1">NAFA Collection</span>';
	  } else if (status=="SMRT") {
		status_txt = '<span class="Title1">SMRT Collection</span>';
	  } else if (status=="NAC") {
		status_txt = '<span class="Title1">NAC Singapore Collection</span>';
	  } else {
		status_txt = '';
	  }
	  document.getElementById('cap').innerHTML = caption + '<br />' + status_txt;
}