function TogglePic2(pic, w, h, txt1, txt2, sold) {
	  document.all['pic'].src = pic;
	  document.all['pic'].width = w;
	  document.all['pic'].height = h;
	  document.all['cap1'].value = txt1;
	  document.all['cap2'].value = txt2;
	  if (sold=="Y") {
		document.all['sold'].innerHTML = 'Availability: Sold<br /><br />';
	  } else {
		  if (txt2=='') {
			//document.all['sold'].innerHTML = '<a href="contact.htm" class="submenu">Request Price</a><br /><br />';
			document.all['sold'].innerHTML = ' ';
		  } else {
			document.all['sold'].innerHTML = ' ';
		  }
	  }
}
function TogglePic1(pic, w, h, txt1, sold) {
	  document.all['pic'].src = pic;
	  document.all['pic'].width = w;
	  document.all['pic'].height = h;
	  document.all['cap1'].value = txt1;
	  if (sold=="Y") {
		document.all['sold'].innerHTML = 'Availability: Sold<br /><br />';
	  } else {
		//document.all['sold'].innerHTML = '<a href="contact.htm" class="submenu">Request Price</a><br /><br />';
		document.all['sold'].innerHTML = ' ';
	  }
}
