/*!
 * eminencev5 general.js
 * Generic JS functions
 * Copyright 2010, solocommand
 */
 
    function toggle_visibility(id) {
       var e = document.getElementById(id);
       if(e.style.display == 'block')
          e.style.display = 'none';
       else
          e.style.display = 'block';
    }
	
	function set_focus(id) {
		var e = document.getElementById(id);
		e.focus();
	}
	
/* External Site Linking Fix (jQuery) */
   $(document).ready(function() {
      $('a[href^="http://"]').filter(function() {return this.hostname && this.hostname !== location.hostname;}).attr('target', '_blank');
   });
