function goToRates(){
	var i = document.getElementById('ddCountries')
	//window.location.href = 'home/rates.aspx#' + window.document.forms['Form1'].ddCountries.value
	window.location.href = 'home/rates.aspx?code=' + i.value
	return true;
}
function openPayPal(){
	window.open('https://www.paypal.com/cgi-bin/webscr?cmd=xpt/popup/OLCWhatIsPayPal-outside','olcwhatispaypal','toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=no, resizable=no', width='400', height='350');
	return false;
}
function checkout_clear(){
	if(window.document.Form2.txtCCard != undefined){
		window.document.Form2.txtCCard.value='';
	}
	if(window.document.Form2.txtCCCVV != undefined){
		window.document.Form2.txtCCCVV.value='';
	}
	return true;
}