// used for download dialer dropdown
$(document).ready(function(){
	$('#downloadDialerButton').click(function(){
		$('#downloadDialerSlide').slideToggle("slow");
	});
})
// used for ip to country detection
function detectCountry() {
	var form = document.forms[1];
	getPhoneCode(form.tempCountry.value);
}

//used for ip to country detection in buy-now.jsp
function detectCountryTwo() {
	
	var form = document.forms[2];
	getPhoneCodeTwo(form.tempCountry.value);
}
