


<!---- Confirm Delete Section === ----->
function go_there(delthis) {
	if(confirm("Do you really want to delete this section"))
	window.location=delthis;
}


<!-- Large Image -->
function Start(page,features) {
OpenWin = this.open(page, "new", features);
}


<!---- === Refresh the parent window == -->
function out()
{
window.opener.location.reload()
}


<!---- === Addprod.asp Delete product === ----->
function del_product(delthis) {
if(confirm("Do you really want to delete this product"))
window.location=delthis;
}

	Image1 = new Image(500,596)
	Image1.src = "http://www.careforthewild.com/graphics/map_uk.jpg"
	Image2 = new Image(500,596)
	Image2.src = "http://www.careforthewild.com/graphics/map_wales.jpg"
	Image3 = new Image(500,596)
	Image3.src = "http://www.careforthewild.com/graphics/map_off.jpg"

	function original() {
		document.emp.src = Image3.src; return true;
	}
	function wales() {
		document.emp.src = Image2.src; return true;
	}
	function uk() {
		document.emp.src = Image1.src; return true;
	}
	
	
	
function limitText(limitField, limitCount, limitNum) {
	if (limitField.value.length > limitNum) {
		limitField.value = limitField.value.substring(0, limitNum);
	} else {
		limitCount.value = limitNum - limitField.value.length;
	}
}	
