
function HideContent(d) {
if(d.length < 1) { return; }
document.getElementById(d).style.visibility = "hidden";
}
function ShowContent(d) {
if(d.length < 1) { return; }
document.getElementById(d).style.visibility = "visible";
}
function ReverseContentDisplay(facebook,text) {
if(facebook.length < 1) { return; }
if(document.getElementById(facebook).style.visibility != "visible") {
var container = document.getElementById(text);
var anchors = container.getElementsByTagName('a'); 
for (var i = 0; i<anchors.length; i++){ anchors[i].style.color = "red"; }
document.getElementById(facebook).style.visibility = "visible"; 
} else { 
var container = document.getElementById(text);
var anchors = container.getElementsByTagName('a'); 
for (var i = 0; i<anchors.length; i++){ anchors[i].style.color = "#666666"; }		
document.getElementById(facebook).style.visibility = "hidden";
}
}
document.writeln(" <style> "); 
document.writeln("     #lower_left_facebook { "); 
document.writeln(" 	   font-size:13px; "); 
document.writeln(" 	   float:left; "); 
document.writeln("     margin: 0px; "); 
document.writeln(" 	   padding:9px 0px 0px 0px; "); 
document.writeln("     width: 80px; "); 
document.writeln("     visibility:hidden; "); 
document.writeln(" } "); 
document.writeln("     #lower_left_text { "); 
document.writeln(" 	   font-size:13px; "); 
document.writeln(" 	   float:left; "); 
document.writeln("     margin: 0px; "); 
document.writeln(" 	   padding:10px 16px 0px 0px; "); 
document.writeln(" } "); 
document.writeln("     #lower_left_link { "); 
document.writeln(" 	   font-size:13px; "); 
document.writeln(" } "); 
document.writeln("     #lower_left_link a { "); 
document.writeln("     font-weight:normal; "); 
document.writeln("     color:red; "); 
document.writeln(" 	   color:#666666;  "); 
document.writeln(" } ");
document.writeln(" </style> "); 
//document.writeln(" <span id=\"lower_left_text\"> "); 
//document.writeln(" <span id=\"lower_left_link\"> "); 
//document.writeln(" <a onmouseover=\"ReverseContentDisplay('lower_left_facebook','lower_left_link'); return true;\"  href=\"http://www.facebook.com/group.php?gid=54864599839#!/pages/SalsaBlvd/153584118016517?v=wall\" target=\"_blank\"> "); 
//document.writeln(" SalsaBlvd is now on Facebook! "); 
//document.writeln(" </a> "); 
//document.writeln(" </span> "); 
//document.writeln(" </span> "); 
//document.writeln(" <div id=\"lower_left_facebook\"> "); 
//document.writeln(" <script src=\"http://connect.facebook.net/en_US/all.js#xfbml=1\"></script><fb:like href=\"http%3A%2F%2Fwww.facebook.com%2Fpages%2FSalsaBlvd%2F153584118016517\" layout=\"button_count\" show_faces=\"false\" width=\"450\" font=\"arial\" colorscheme=\"dark\"></fb:like> "); 
//document.writeln(" </div> ");


