function photo_toggle(prefix, cellno, nametofind) {
	var pic = document.getElementsByName(nametofind);
	
	//switch off all images
	for (i=0; i < pic.length; i++) {
		document.getElementById(prefix+(i+1)).className = '';
		document.getElementById(prefix+(i+1)+'_content').style.display = 'none';
	}
	//switch on the selected image
	document.getElementById(prefix+cellno).className = 'selected';
	document.getElementById((prefix+cellno)+'_content').style.display = 'block';
}

//Turn off all photo toggle images

function turnOff(prefix, nametofind){
		var pic = document.getElementsByName(nametofind);
	
	//switch off all images
	for (i=0; i < pic.length; i++) {
		document.getElementById(prefix+(i+1)).className = '';
		document.getElementById(prefix+(i+1)+'_content').style.display = 'none';
	}
}

function switch_tabs(tab) {
	var tabs = document.getElementById('tabs').getElementsByTagName('li').length;
	//switch off all tabs and content
	for (i=0; i<tabs; i++){
		document.getElementById('tab' + (i+1)).className='';
		document.getElementById('tab' + (i+1) +'_content').style.display='none';
	}
	
	//switch on the selected tab and content	
	document.getElementById(tab).className='selected';
	document.getElementById(tab+'_content').style.display='block';
}

//enlarge image on roll over
function enlarge(img_name, img_width) {
   document[img_name].width = img_width;
   }

 // Display buy back price for used diapers
function findPrice()
		{
			var selObj = document.getElementById('useddiaperprices');
			var txtValueObj = document.getElementById('txtValue');
			var txtTextObj = document.getElementById('txtText');
			
			var selIndex = selObj.selectedIndex;
			txtValueObj.innerHTML = selObj.options[selIndex].value;
			txtTextObj.innerHTML = selObj.options[selIndex].text;
		}
// Carriwell Movie Window
function movieWindow(url) {
  window.open(url,'popupWindow','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=yes,copyhistory=no,width=483,height=359,screenX=150,screenY=150,top=150,left=150')
}

