function setOpacity(o, value) {
if(isNaN(value)) return;
	o.style.opacity = "." + value;
	o.style.filter = 'alpha(opacity=' + value + ')';
}

function getStyle(x,styleProp)
{
	if (x.currentStyle)
		var y = x.currentStyle[styleProp];
	else if (window.getComputedStyle)
		var y = document.defaultView.getComputedStyle(x,null).getPropertyValue(styleProp);
	return y;
}

function mas_clarito(o) {
if(getStyle(o, "opacity") > .90) return;
//alert((o.style.opacity * 100) + 5);
   setOpacity(o, Math.round(getStyle(o, "opacity") * 100) + 5);
//   filter:alpha(opacity=25); -moz-opacity:.25; opacity:.25;
}

function poquito_mas_clarito(o) {
if(getStyle(o, "opacity") > .97) return;
   setOpacity(o, Math.round(getStyle(o, "opacity") * 100) + 1);
}

function poquito_menos_clarito(o) {
//alert((o.style.opacity * 100) - 30);
if(getStyle(o, "opacity") <= .5) return;
   setOpacity(o, Math.round(getStyle(o, "opacity") * 100) - 30);
}



function toggle_dropmenu(id){
    count = 1;
    while (count <= 10){
        var step = id+'_'+count;
        if (document.getElementById(step)){
        document.getElementById(step).style.display = (document.getElementById(step).style.display == 'block')

? 'none' : 'block';
        }
        count++;
    }
}

function roll_dropmenu(id, roll_class){
    document.getElementById(id).className = roll_class;
}

function imprimePost() {
  var disp_setting="toolbar=no,location=no,directories=yes,menubar=no,";
  disp_setting+="scrollbars=yes,width=650, height=600, left=100, top=25"; 
  var docprint=window.open("print_preview.html","print_preview",disp_setting);

  var content_vlue = document.getElementById("main").firstChild.innerHTML;

  docprint.document.open(); 
  docprint.document.write('<html><head><title>Print Preview [de tod@s para tod@s]</title>'); 
//  docprint.document.write('<meta content="text/html; charset=UTF-8" http-equiv="Content-Type"/>');
//  docprint.document.write('<meta content="text/html; charset=ISO-8859-1" http-equiv="Content-Type"/>');

//  docprint.document.write('<script src="http://delotrolado.net/counter/usecounter.php?PAGINA=print_preview&REFER=' + location.href + '" type="text/javascript"></script>');

//  docprint.document.write('</head><body onLoad="self.print()">');
  docprint.document.write('<LINK href="http://delotrolado.net/inc/detodos-imprime.css" type="text/css" rel="stylesheet" />');
  docprint.document.write('</head><body>');

  docprint.document.write("<div style='text-align: right; font-weight: bold'><a href= 'javascript:self.print();'><img border='0' src='http://delotrolado.net/img/printer.jpg'/>  <font color='#888888'>PRINT / IMPRIMIR</font></a></div><br/>"); 
  docprint.document.write("<div style='float:right;'>http://detodos-paratodos.blogspot.com</div><br/>"); 
  docprint.document.write(content_vlue); 
  docprint.document.write('</body></html>'); 
  docprint.document.close(); 

  if(docprint.document.getElementById("blog-pager")) {
     docprint.document.getElementById("blog-pager").innerHTML = "";
     docprint.document.getElementById("blog-pager").nextSibling.nextSibling.innerHTML = "";
  }
  
  docprint.focus(); 

  document.getElementById("imgInvisible").src = "http://delotrolado.net/counter/counter-test.php?PAGINA=print_preview&REFER=" + location.href + "&scrres=" + screen.width + "x" + screen.height;

}


function showrecentcomments(json){for(var i=0;i<a_rc;i++){var b_rc=json.feed.entry[i];var c_rc;if(i==json.feed.entry.length)break;for(var k=0;k<b_rc.link.length;k++){if(b_rc.link[k].rel=='alternate'){c_rc=b_rc.link[k].href;break;}}c_rc=c_rc.replace("#","#comment-");var d_rc=c_rc.split("#");d_rc=d_rc[0];var e_rc=d_rc.split("/");e_rc=e_rc[5];e_rc=e_rc.split(".html");e_rc=e_rc[0];var f_rc=e_rc.replace(/-/g," ");f_rc=f_rc.link(d_rc);var g_rc=b_rc.published.$t;var h_rc=g_rc.substring(0,4);var i_rc=g_rc.substring(5,7);var j_rc=g_rc.substring(8,10);var k_rc=new Array();k_rc[1]="Jan";k_rc[2]="Feb";k_rc[3]="Mar";k_rc[4]="Apr";k_rc[5]="May";k_rc[6]="Jun";k_rc[7]="Jul";k_rc[8]="Aug";k_rc[9]="Sep";k_rc[10]="Oct";k_rc[11]="Nov";k_rc[12]="Dec";if("content" in b_rc){var l_rc=b_rc.content.$t;}else if("summary" in b_rc){var l_rc=b_rc.summary.$t;}else var l_rc="";var re=/<\S[^>]*>/g;l_rc=l_rc.replace(re,"");if(m_rc==true)document.write('On '+k_rc[parseInt(i_rc,10)]+' '+j_rc+' ');document.write('<a href="'+c_rc+'">'+b_rc.author[0].name.$t+'</a> commented');if(n_rc==true)document.write(' on '+f_rc);document.write(': ');if(l_rc.length<o_rc){document.write('<i>&#8220;');document.write(l_rc);document.write('&#8221;</i><br/><br/>');}else{document.write('<i>&#8220;');l_rc=l_rc.substring(0,o_rc);var p_rc=l_rc.lastIndexOf(" ");l_rc=l_rc.substring(0,p_rc);document.write(l_rc+'&hellip;&#8221;</i>');document.write('<br/><br/>');}}}
