/*
* $Id: cs_utils.js,v 1.5 2009/04/24 10:28:50 annette Exp $ 
*/
/* Odds and ends for bucherreisen.de Relaunch 2009 */	


// Alias for document.getElementById()
    
function getElem(id) {
	if ( typeof(id) == 'string' ) {
		return document.getElementById(id);
	}
	return id;
}
    
