/* These functions are for the newsletter preferences on the registration page */

function uncheckAll() { 
  alert('at least it works a little');

  if ($('#edit-profile-cbCurrentEvents').is(':checked'))
  {
    $('#edit-profile-cbCurrentEvents').click();
  }
  if ($('#edit-profile-cbHealth').is(':checked'))
  {
    $('#edit-profile-cbHealth').click();
  }
  if ($('#edit-profile-cbFinance').is(':checked'))
  {
    $('#edit-profile-cbFinance').click();
  }
  if ($('#edit-profile-cbBetterLiving').is(':checked'))
  {
    $('#edit-profile-cbBetterLiving').click();
  }

}

function checkAll() { 
  alert('at least it works a little');

  if ($('#edit-profile-cbCurrentEvents').is(':not(:checked)'))
  {
    $('#edit-profile-cbCurrentEvents').click();
  }
  if ($('#edit-profile-cbHealth').is(':not(:checked)'))
  {
    $('#edit-profile-cbHealth').click();
  }
  if ($('#edit-profile-cbFinance').is(':not(:checked)'))
  {
    $('#edit-profile-cbFinance').click();
  }
  if ($('#edit-profile-cbBetterLiving').is(':not(:checked)'))
  {
    $('#edit-profile-cbBetterLiving').click();
  }

}

/* This function creates a bookmark link  */
function CreateBookmarkLink() {

 title = "NewsBlarg"; 

 url = "http://www.newsblarg.com";

	if (window.sidebar) { // Mozilla Firefox Bookmark
		window.sidebar.addPanel(title, url,"");
	} else if( window.external ) { // IE Favorite
		window.external.AddFavorite( url, title); }
	else if(window.opera && window.print) { // Opera Hotlist
		return true; }
 }

 if (window.external) {
  document.write('<a href = 
     "javascript:CreateBookmarkLink()");">Add to Favorites</a>'); 
  } else  if (window.sidebar) {
  document.write('<a href = 
    "javascript:CreateBookmarkLink()");">Bookmark Page</a>'); 
 } else if (window.opera && window.print) {	
   document.write('<a href =
     "javascript:CreateBookmarkLink()");">Add Bookmark</a>');
 } 

