<!--
// Author: Zoran Simic http://kagibi.com
// Permission granted to SimplytheBest.net to feature the script in the DHTML script collection
// Courtesy of SimplytheBest.net - http://simplythebest.net/scripts/
	var rate = new Array(1.25803,1.97635,1);
	function currency_convert(origin) {
		var origin_value = eval('document.currency.c'+origin+'.value');
		var euro_equivalent = rate[origin];
		var v;
		for (i=0; i<rate.length; i++) {
			if (i!=origin) {
				v = Math.round(rate[i]*origin_value/euro_equivalent*100)/100;
				eval('document.currency.c'+i+'.value = '+v);
			}
		}
		return true;
	}
// -->

<!-- 
function ValidateForm(form){ 
	if (form.terms.checked == false) { 
		alert ( "Please check the Terms & Conditions box." ); 
		return false; 
	} 
}
-->
