// JavaScript Document function pageWidth() {return window.innerWidth != null? window.innerWidth: document.body != null? document.body.clientWidth:null;} function pageHeight() {return window.innerHeight != null? window.innerHeight: document.body != null? document.body.clientHeight:null;} function expand_toc() { document.getElementById("toc-collapse").style.display = "inline-block"; document.getElementById("toc-expand").style.display = "none"; document.getElementById("toc-name").style.display = "inline-block"; document.getElementById("toc-hr").style.display = "block"; document.getElementById("toc-title").style.display = "block"; document.getElementById("toc-list").style.display = "block"; document.getElementById("entry-toc").style.width = "200px"; } function collapse_toc() { document.getElementById("toc-collapse").style.display = "none"; document.getElementById("toc-expand").style.display = "inline-block"; document.getElementById("toc-name").style.display = "none"; document.getElementById("toc-hr").style.display = "none"; document.getElementById("toc-title").style.display = "none"; document.getElementById("toc-list").style.display = "none"; document.getElementById("entry-toc").style.width = "57px"; } function expand_chat() { document.getElementById("chat-collapse").style.display = "inline-block"; document.getElementById("chat-expand").style.display = "none"; document.getElementById("chat-table").style.display = "block"; } function collapse_chat() { document.getElementById("chat-collapse").style.display = "none"; document.getElementById("chat-expand").style.display = "inline-block"; document.getElementById("chat-table").style.display = "none"; } function init_toc_vis() { if( document.getElementById("toc-title") ) { document.getElementById("entry-toc").style.display = "block"; var w = pageWidth(); if(w >= 1260) { expand_toc(); } else { collapse_toc(); } } } function init_chat_vis() { if( document.getElementById("shoutbox") ) { var w = pageWidth(); if(w >= 1260) { expand_chat(); } else { collapse_chat(); } } } function init_search_vis() { var w = pageWidth(); if(w >= 450) { document.getElementById("navbar-search").style.width = "160px"; } else { document.getElementById("navbar-search").style.width = "100px"; } } function build_toc() { var content = document.getElementById("entry-content").innerHTML; if( content.indexOf(''; } else{ toc += ''; } toc += ''; document.getElementById("entry-toc").innerHTML = toc; } } function build_about_link() { var about_link = ''; about_link += ''; about_link += 'Sobre Mercadee.COM'; about_link += ''; document.getElementById("about-link").innerHTML = about_link; } function build_contact_link() { var contact_link = ''; contact_link += ''; contact_link += 'Contáctenos'; contact_link += ''; document.getElementById("contact-link").innerHTML = contact_link; } function hide_highlights_menu_on_contact_page() { var content = document.getElementById("entry-content").innerHTML; if( content.indexOf('wpcf7') == -1 ) { document.getElementById("highlights-menu").style.display = "block"; } } function init_resize() { init_toc_vis(); init_chat_vis(); init_search_vis(); } function build_js_elements() { build_toc(); build_about_link(); build_contact_link(); hide_highlights_menu_on_contact_page(); init_resize(); } window.onload = build_js_elements; window.onresize = init_resize;