// JavaScript Document
function Cargar_Pie()
{
findMyText("S.A.U", "SL");
document.write("<Table width='100%' border='0' cellpadding='0' cellspacing='0'>");
document.write("<tr>");                
document.write("<td height='1' colspan='2' bgcolor='#FFFFFF'>");
document.write("</td>");
document.write("</tr>");
document.write("<tr>");
document.write("<td height='20' colspan='2' align='center' class = 'menu1'>");
document.write(" <div class='texto_pie'>Copyright &copy; 2005 The McGraw-Hill Companies - CIF.B28914323 | <a href='http://www.mcgraw-hill.com/privacy.html' target='_blank' class = 'blanco'>Pol&iacute;tica de privacidad</a> y <a href='http://www.mcgraw-hill.com/copyrttm.htm' target='_blank' class = 'blanco'>T&eacute;rminos de uso</a> | <a class = 'blanco' href='mailto:web_development@mcgraw-hill.com'>Webmaster</a></div>");
document.write("</td>");
document.write("</tr>");
document.write("</Table>");
}

var haystackText = "";
function findMyText(needle, replacement) {

     if (haystackText.length == 0) {
          haystackText = document.title;
     }
     var match = new RegExp(needle, "ig");     
     var replaced = "";
     if (replacement.length > 0) {
          replaced = haystackText.replace(match, replacement);
     }
     else {
          var boldText = needle ;
          replaced = haystackText.replace(match, boldText);
     }
     document.title = replaced;
}

