function switchTpc(num){
		//switch the selected color box
		$('cur_selected_topic').src = '/images/contact_topic/topic_'+num+'_sel.gif';
		$('select_topic').hide();
		//$('select_contact_type').style.visibility = 'visible';
		//$('contact_next').style.visibility = 'visible';
		
		//update the form element
		//$('ss_frm_topic').value = num;
		//return false;
}
function switchTpc_fr(num){
		//switch the selected color box
		$('cur_selected_topic').src = '/images/contact_topic/topic_'+num+'_sel_fr.gif';
		$('select_topic').hide();
		//$('select_contact_type').style.visibility = 'visible';
		//$('contact_next').style.visibility = 'visible';
		
		//update the form element
		//$('ss_frm_topic').value = num;
		//return false;
}
function showTpc(){
	$('select_topic').show();
	//$('select_contact_type').style.visibility = 'hidden';
	//$('contact_next').style.visibility = 'hidden';
	
	return false;
}

function switchCnt(num){
		//switch the selected color box
		$('cur_selected_contact').src = '/images/contact_topic/contact_'+num+'_sel.gif';
		$('select_contact').hide();
		$('contact_next').style.visibility = 'visible';
		
		//update the form element
		$('comm_pref').value = num;
		return false;
}
function switchCnt_fr(num){
		//switch the selected color box
		$('cur_selected_contact').src = '/images/contact_topic/contact_'+num+'_sel_fr.gif';
		$('select_contact').hide();
		$('contact_next').style.visibility = 'visible';
		
		//update the form element
		$('comm_pref').value = num;
		return false;
}
function showCnt(){
	$('select_contact').show();
	$('contact_next').style.visibility = 'hidden';
	return false;
}

function switchPrd(num){
		//switch the selected color box
		$('cur_selected_contactproduct').src = '/images/contact_topic/product_'+num+'_sel.gif';
		$('select_contactproduct').hide();
		
		//update the form element
		$('hdn_q').value = num;
		return false;
}
function switchPrd_fr(num){
		//switch the selected color box
		$('cur_selected_contactproduct').src = '/images/contact_topic/product_'+num+'_sel_fr.gif';
		$('select_contactproduct').hide();
		
		//update the form element
		$('hdn_q').value = num;
		return false;
}
function showPrd(){
	$('select_contactproduct').show();
	return false;
}