/**
 * Scroll down and scroll up
 *
 * @author      Remi De Oliveira
 * @author
 * @copyright   2008 
 * @license
 * @created     1st March 2008
 * @revised     1st March 2008 
 */
 
 function scroll_orders(oid){
	var d_order = $('order_detail_'+oid);
	var a = $('button_'+oid);
	
	if(d_order.style.display != 'none'){
		new Effect.BlindUp(d_order);
		a.innerHTML = '<img src="style/images/_bullets/plus.gif" alt="Detail" />';
		d_order.style.display = 'none';
	}else{
		new Effect.BlindDown(d_order);
		a.innerHTML = '<img src="style/images/_bullets/minus.gif" alt="Detail" />';
	}	
 }
document.write('');
document.write('');
document.write('');
document.write('');
document.write('');
