function go(url) {
     window.location = url;
}

function MM_confirm(msg, url) { //v1.0
  if(confirm(msg)) location.replace(url);
}

wmtt = null;

document.onmousemove = updateWMTT;

function updateWMTT(e) {
	x = (document.all) ? window.event.x + document.body.scrollLeft : e.pageX;
	y = (document.all) ? window.event.y + document.body.scrollTop  : e.pageY;
	if (wmtt != null) {
		wmtt.style.left = (x + 14) + "px";
		wmtt.style.top 	= (y - 4) + "px";
	}
}

function showWMTT(id) {
	wmtt = document.getElementById(id);
	wmtt.style.display = "block"
}

function hideWMTT() {
	wmtt.style.display = "none";
}

function externalLinks() {  
    if (!document.getElementsByTagName) return;  
    var anchors = document.getElementsByTagName("a");  
    for (var i=0; i<anchors.length; i++) {  
    var anchor = anchors[i];  
    if (anchor.getAttribute("href") &&  
        anchor.getAttribute("rel") == "external")  
        anchor.target = "_blank";  
    }  
}  
window.onload = externalLinks;

