/*
 * base.js -- Crèdits
 * Copyright 2008, Xin <xin_at_poble_dot_cat>
 *
 * @created 16/01/2008
 *
 */

  
/*
 * This file contain base functions
 *
 * @author Xin <xin_at_poble_dot_cat>
 * @created 16/01/2008
 *
 */


/*
 * Return element id has a php style $('id')
 *
 * @created 16/01/2008 by Xin <xin_at_poble_dot_cat>
 */
function $(id) {
	return document.getElementById(id);
}
