function popWindow(choice,myWidth,myHeight,myScrollbars,myTop,myLeft,myMenubar) {
	window.open (choice, "","width="+myWidth+",height="+myHeight+",scrollbars="+myScrollbars+",top="+myTop+",left="+myLeft+",menubar="+myMenubar+",bgcolor=#ffffff,resizable=yes");
}

function showPreview(section) {
	// hide all
	document.getElementById('my_ifit_preview').style.display = "none";
	document.getElementById('community_preview').style.display = "none";
	document.getElementById('workouts_preview').style.display = "none";
	document.getElementById('articles_preview').style.display = "none";
	document.getElementById('shop_preview').style.display = "none";
	document.getElementById('ifit_preview').style.display = "none";
	// display the correct one
	document.getElementById(section + '_preview').style.display = "block";
}

/* PopWindow Function */

function popWindow(url, myWidth, myHeight, myScrollbars, myTop, myLeft, myMenubar, myResize) {

	window.open(url, "","width="+myWidth+",height="+myHeight+",scrollbars="+myScrollbars+",top="+myTop+",left="+myLeft+",menubar="+myMenubar+",resizable="+myResize+",bgcolor=#ffffff");

}



function unhide(divID) {
  var item = document.getElementById(divID);
  if (item) {
    item.className=(item.className=='hidden')?'unhidden':'hidden';
  }
}



