function productName(name){
	$('productNameC').update(name);
}

function fr(id){
	
	for(i=1; i<=3; i++){ $('fr'+i).style.display = 'none'; }
	
	$('fr'+id).style.display = 'block';

}
function promoNext(){
	
}

function promoPrev(){
	
}

function promoById(){
	var url = 'news.php';

	new Ajax.Request(url, {
	  method: 'get',
	  onSuccess: function(transport) {
	    var notice = $('notice');
	      notice.update('123');
	  }
	});
}


function fr(id){
	
	el = document.getElementById('fr'+id);
	
	for(i=1; i<=5; i++){
		document.getElementById('fr'+i).style.display = "none";
	}
	
	el.style.display = "block";
	
}
