function initPlatform(){
  showSubmenuAllowChangeHeightOnContent = false;
  $(function(){
  	// Scales size
  	$('#ontv_content_holder').css('overflow','visible').height('auto');
  	$('#ontv_content_and_submenu_holder').height('auto');
  	document.getElementById('ontv_content_and_submenu_holder').style.minHeight='312px';
  	window.scrollTo(0, 1);
  });

}

function savePref(key,val){
  $.cookie('ontv_'+key,val);
}

function loadPref(key){
  if(key=='height') return -1;
  return $.cookie('ontv_'+key);
}

function extLink(href){
  if(user.isPro){
    window.location.href=analyticsTag(href,"iphone_web");
  } else {
    showError(lang.summary_requires_pro_iphone);
  }
}

function checkVersion(){
  // noop
}


