/*
===================================
Copyright (c) 2003 Fancy-rats.co.uk
Author: Darren Clark
Created: 17 July 2003
===================================
*/

function write_presets()
{
	var chosenpreset = document.cage.preset.value;
	//var current_units = document.cage.units.value;
	
	if (document.cage.units[0].checked == true) {
		var current_units = "cm";
	} else {
		var current_units = "in";
	}
	
	if (chosenpreset == 'terenzianicanova')
	{
		if (current_units == "in") {
			document.cage.width.value = "27.5";
			document.cage.height.value = "13.8";
			document.cage.depth.value = "17.3";
		} else {	
			document.cage.width.value = "70";
			document.cage.height.value = "35";
			document.cage.depth.value = "44";
		}	
	} 
	else if (chosenpreset == 'terenzianimichelangelo')
	{
		if (current_units == "in") {
			document.cage.width.value = "27.5";
			document.cage.height.value = "27.5";
			document.cage.depth.value = "17.3";
		} else {	
			document.cage.width.value = "70";
			document.cage.height.value = "70";
			document.cage.depth.value = "44";
		}	
	} 
	else if (chosenpreset == 'terenzianimoore')
	{
		if (current_units == "in") {
			document.cage.width.value = "27.5";
			document.cage.height.value = "41.3";
			document.cage.depth.value = "17.3";
		} else {	
			document.cage.width.value = "70";
			document.cage.height.value = "105";
			document.cage.depth.value = "44";
		}	
	} 
	else if (chosenpreset == 'terenzianirodin')
	{
		if (current_units == "in") {
			document.cage.width.value = "39.4";
			document.cage.height.value = "31.5";
			document.cage.depth.value = "19.7";
		} else {	
			document.cage.width.value = "100";
			document.cage.height.value = "80";
			document.cage.depth.value = "50";
		}	
	}
	else if (chosenpreset == 'ferplastjenny')
	{
		if (current_units == "in") {
			document.cage.width.value = "31.5";
			document.cage.height.value = "31.3";
			document.cage.depth.value = "19.7";
		} else {	
			document.cage.width.value = "80";
			document.cage.height.value = "79.5";
			document.cage.depth.value = "50";
		}	
	}
	else if (chosenpreset == 'ferplastfuretplus')
	{
		if (current_units == "in") {
			document.cage.width.value = "31.5";
			document.cage.height.value = "27.5";
			document.cage.depth.value = "19.7";
		} else {	
			document.cage.width.value = "80";
			document.cage.height.value = "70";
			document.cage.depth.value = "50";
		}	
	}
	else if (chosenpreset == 'ferplastfuretxlarge')
	{
		if (current_units == "in") {
			document.cage.width.value = "31.5";
			document.cage.height.value = "34";
			document.cage.depth.value = "29.5";
		} else {	
			document.cage.width.value = "80";
			document.cage.height.value = "86.5";
			document.cage.depth.value = "75";
		}	
	}
	else if (chosenpreset == 'savicfreddy')
	{
		if (current_units == "in") {
			document.cage.width.value = "31.5";
			document.cage.height.value = "24.8";
			document.cage.depth.value = "19.7";
		} else {	
			document.cage.width.value = "80";
			document.cage.height.value = "63";
			document.cage.depth.value = "50";
		}	
	}
	else if (chosenpreset == 'fopbuddydeluxe')
	{
		if (current_units == "in") {
			document.cage.width.value = "25.9";
			document.cage.height.value = "27.1";
			document.cage.depth.value = "17.7";
		} else {	
			document.cage.width.value = "66";
			document.cage.height.value = "69";
			document.cage.depth.value = "45";
		}	
	}
	else
	{
		document.cage.width.value = "";
		document.cage.height.value = "";
		document.cage.depth.value = "";
	}
}
