function showBase(toggle) {
	if(!toggle) {
		$('baseContainer').style.display = 'none';
		return;
	}
	$('baseContainer').style.display = 'block';
}
function ftrGoTo(loc) {
  switch(loc) {
    case 'links' :
      domain = '/';
      break;
    default :
      domain = 'http://www.discountfavors.com/';
      break;
  }
  window.location = domain + loc + '.html';
}