	function klapper( msg_id ){ 
		if( document.getElementById(msg_id).style.display == 'none' ){
			document.getElementById(msg_id).style.display = 'block';
			document.getElementById('reply_butt').style.display = 'none';
		}
		else{
			document.getElementById(msg_id).style.display = 'none';
			document.getElementById('reply_butt').style.display = 'block';
		}
	}	
	
	function show_table( msg_id ){ 
		if( document.getElementById(msg_id).style.display = "none" ){
			document.getElementById(msg_id).style.display = "block";
		}
		else{
			document.getElementById(msg_id).style.display = "none";
		}
	}	
	
	function close_me( msg_id ){ 
		document.getElementById(msg_id).style.display = "none";
	}
	
	function submitform( form_name ){
  	document.getElementById(form_name).submit();
	}

function getContent( b_url ){ 
	new Ajax.Updater('popin', b_url, { method : 'get' }); 	
	document.getElementById('popin').style.display='block'; 
} 
 
function heads_up( post, adv_id ){ 
if( post == 'double' ){
		getContent( '/includes/heads_up.php?type=double&id='+adv_id );
	}
	
if( post == 'rap' ){
		getContent( '/includes/heads_up.php?type=rapport&id='+adv_id );
	}
	
}

function updateOutClick( b_url ){ 
	new Ajax.Updater('popin', b_url, { method : 'get' }); 
}

function increment_view( banner_id ){
	updateOutClick( '/includes/category_tales.php?type=outclick&id='+banner_id );
}


