
function openLink(extlink){
  extlink = extlink.slice(7);
  var uguale = new RegExp("=", "g");
  var ecomm = new RegExp("&", "g");
  extlink = extlink.replace('?',"%3F");
  extlink = extlink.replace(uguale,"%3D");
  extlink = extlink.replace(ecomm,"%26");
  window.open('/link_to/'+extlink,'mmc_window');
  return false;
}



function linkTo(){
  var content = document.getElementById('content');
    var a=content.getElementsByTagName('a');
  	for (var i=0; i < a.length; i++){
  	 if (a[i].getAttribute('href') != null && a[i].getAttribute('href').indexOf("myminicooper.net") == -1 && a[i].getAttribute('href').indexOf("/") != 0 && a[i].getAttribute('href') != '#respond'){
  	   a[i].onclick = function(){
        openLink(this.href);
        return false;
        };
  		}
  	}
}



window.onload = function(){
  linkTo();
}

