/* JavaScript // mobivillage

  .-------------'```'----....,,__                        _,
  |                               `'`'`'`'-.,.__        .'(
  |                                             `'--._.'   )
  |                                                   `'-.<
  \               .-'`'-.                            -.    `\
   \               -.o_.     _                     _,-'`\    |
    ``````''--.._.-=-._    .'  \            _,,--'`      `-._(
      (^^^^^^^^`___    '-. |    \  __,,..--'                 `
       `````````   `'--..___\    |`
                             `-.,' mobi_whales

*/
	function hideShowEl(id) {
		
		elmStyle = document.getElementById(id).style;
		
		if (elmStyle.display == 'none')
			elmStyle.display = 'block';
		else 
			elmStyle.display = 'none';
	}
