 function modifyLinks(){
    /*
    var currentdomain = document.domain;

    var current_href;
                             // Loop through the the links section
   	for (l=0; l<document.links.length; l++)   {
        current_href = document.links[l].href;
			var beforeInnerHtml = document.links[l].innerHTML;
			current_href = current_href.replace(/http:\/\/www.powerware.com/,"http://v7.powerware.com");
			current_href = current_href.replace(/http:\/\/powerware.com/,"http://v7.powerware.com");
			document.links[l].href = current_href;
			document.links[l].innerHTML = beforeInnerHtml; //this is necessary to prevent the html with the a tags from being set to the link itself!
	}
	
	*/
	
 }
