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($('SubscribeFoundus'), 'change', found_other_input);
}
function found_other_input(){
	if($('SubscribeFoundus').value == 13) {
		new Ajax.Updater('SubscribeFoundus_wrapper', '/etips/foundusinput', {
		asynchronous:true, 
		evalScripts:true,
		onComplete:function(request){
			$('progress').hide();
		},
		onLoading:function(request){
			$('progress').show();
		}
	});	
	}	
}
function found_other_select(){
		new Ajax.Updater('SubscribeFoundus_wrapper', '/etips/foundusselect', {
		asynchronous:true, 
		evalScripts:true,
		onComplete:function(request){
			$('progress').hide();
		},
		onLoading:function(request){
			$('progress').show();
		}
	});	
}

Event.observe(window, 'load', found_other_init);