function show_quick_options( id, action, element_name ){

	//Stop the hide action if the show one has been triggered for the same id
	if( action=="show" ){
	
		var trigger_name="trigger_"+id;
	
		//End the count down
		if( eval("typeof "+trigger_name+"!='undefined'") ){
		
			eval("clearTimeout("+trigger_name+");");
		
		}
		
		document.getElementById(element_name+id).className="options_"+action;
	
	}
	//Pause the hide action in case the cursor is just moving from one cell to the other on mouseout
	else{
	
		var function_name="shift_"+id;
		var function_string=function_name+"=function(){ document.getElementById('top_and_bottom_links_"+id+"').className='options_"+action+"'; }";
		eval(function_string);
		
		var delay=1;
		var trigger_name="trigger_"+id;
		
		eval(trigger_name+"=setTimeout( function_name+'()', delay );");

	}

}