function MM_openBrWindow(theURL,winName,features) { //v2.0
  var w=window.open(theURL,winName,features);
  w.document.close();
  w.focus();
}

function MM_openBrWindowontop(theURL,winName,features){
    var w=window.open(theURL,winName,features);
			w.document.close();
			w.focus();
  }

function openWin(url) {
	var w = window.open(url);
	w.document.close();
	w.focus();
	return false;
}


domok = document.getElementById;
skn = 0;
if (domok)	{
	tdl = document.getElementById("topdecklink");
	if (tdl) {
		skn = tdl.style;
		if (navigator.appName.substring(0,3) == "Net")
			document.captureEvents(Event.MOUSEMOVE);
		document.onmousemove = get_mouse;
	}
	
}

function poplink(msg) {
	var content =""+msg+"";
	tdl = document.getElementById("topdecklink");
	skn = tdl.style;
	if (navigator.appName.substring(0,3) == "Net")
		document.captureEvents(Event.MOUSEMOVE);
		document.onmousemove = get_mouse;
	if (domok && skn && tdl) {
	  	tdl.innerHTML = content;
	  	skn.visibility = "visible";
	}
}

function get_mouse(e) {
	var x = (navigator.appName.substring(0,3) == "Net") ? e.pageX : event.x+document.body.scrollLeft;
	var y = (navigator.appName.substring(0,3) == "Net") ? e.pageY : event.y+document.body.scrollTop;
	skn.left = x + 1
	skn.top = y - 100;
}

function killlink()	{
	if (domok && skn)
  		skn.visibility = "hidden";
}

