function email_popup(){
	$('faq_popup_background').show();
	$('faq_popup_wrapper').show();
}
function close_popup_window() {
	$('faq_popup_background').hide();
	$('faq_popup_wrapper').hide();	
}

function found_other_init(){
	Event.observe($('ContactFoundus'), 'change', found_other_input);
}
function found_other_input(){
	if($('ContactFoundus').value == 13) {
		new Ajax.Updater('ContactFoundus_wrapper', '/contact/foundusinput', {
		asynchronous:true, 
		evalScripts:true,
		onComplete:function(request){
			$('progress').hide();
		},
		onLoading:function(request){
			$('progress').show();
		}
	});	
	}	
}
function found_other_select(){
		new Ajax.Updater('ContactFoundus_wrapper', '/contact/foundusselect', {
		asynchronous:true, 
		evalScripts:true,
		onComplete:function(request){
			$('progress').hide();
		},
		onLoading:function(request){
			$('progress').show();
		}
	});	
}

Event.observe(window, 'load', found_other_init);