/* ---------------------- Postage Script ----------------------
 * Displays the appropriate cost of shipping
 */

function setInternationalPostageCost() {
	if (document.getElementById('internationalCost')) {
		document.getElementById('internationalCost').innerHTML = "$ "+document.getElementById('destination').value;
		document.getElementById('shippingOption_international').value = document.getElementById('destination').value;
		setShippingType();
	}
	
	else {
//		alert("An error has occurred. If you wish to make an international delivery, please select the Regular Post option, complete the process and contact Rock Paper Scissors at contact@rpss.com.au. You will be charged the difference at a later date.\n\n We apologise for the inconvenience.\n\n The appropriate page elements cannot be found.");
	}
}

function autoLoad() {
	setInternationalPostageCost();
}

function setShippingType() {
	if(document.getElementById('shippingOption_regular').checked) {
		document.getElementById('shippingType').value = "Regular Post";

	} else if(document.getElementById('shippingOption_registered').checked) {
		document.getElementById('shippingType').value = "Registered Post";

	} else if(document.getElementById('shippingOption_international').checked) {
		document.getElementById('shippingType').value = "Registered International";

	} 
}
