 function switchColors(element, color)
 {
 links=document.getElementsByTagName("a") ;
 for (var i = 0 ; i < links.length ; i ++)
     links.item(i).style.color = '#e8b5cf';

 element.style.color=color ;
 }

// function InitHeightDiv() {
//         var _contentHeight = document.getElementById('divContent').offsetHeight;
//         parent.document.getElementById("frame_home").style.height = _contentHeight.toString() + 'px';
// }
// InitHeightDiv();

 //function footer() {
 //    var _contentHeightfooter = document.getElementById('frame_home').offsetHeight;
 //    document.getElementById("footer").style.top = (_contentHeightfooter.toString() - 75) + 'px';
 //    alert(offsetHeight);
// }

