function openAsxSite(){
  var asx = document.getElementById('asx');
  
  asx.onclick = function(){
	var href = asx.getAttribute('href');
	window.open(href);
	return false;
  }
}
addEvent(window,'load',openAsxSite);
