Xoffset = -250;
Yoffset = 14;

var old,skn,iex=(document.all),yyy=-1000;
var ff = document.getElementById&&!document.all
var ie = document.all

skn = document.getElementById("dek").style
skn.visibility = 'visible';
skn.display = 'none';

document.onmousemove = function (e) {
	var x = (ff) ? e.pageX : event.x + document.body.scrollLeft;
	skn.left=x+Xoffset;
	var y = (ff) ? e.pageY : event.y + document.body.scrollTop;
	skn.top=y+yyy;
}

function popup (msg, bak) {
	var content = '<table border="0" width="310" cellpadding="0" cellspacing="0">' +
				'		<tr>' +
				'			<td width="17"><img src="http://www.nexcen.com.mx/archivos/alt/esq-sup-izq.gif"></td>'+
				'			<td background="http://www.nexcen.com.mx/archivos/alt/sup.gif"></td>'+
				'			<td width="17"><img src="http://www.nexcen.com.mx/archivos/alt/esq-sup-der.gif"></td>'+
				'		</tr>'+
				'		<tr>'+
				'			<td background="http://www.nexcen.com.mx/archivos/alt/izq.gif"></td>'+
				'			<td bgcolor="#FFFFFF" class="textos">' + msg + '</td>'+
				'			<td background="http://www.nexcen.com.mx/archivos/alt/der.gif"></td>'+
				'		</tr>'+
				'		<tr>'+
				'			<td><img src="http://www.nexcen.com.mx/archivos/alt/esq-inf-izq.gif"></td>'+
				'			<td background="http://www.nexcen.com.mx/archivos/alt/inf.gif"></td> '+
				'			<td><img src="http://www.nexcen.com.mx/archivos/alt/esq-inf-der.gif"></td>'+
				'		</tr>'+
				'	</table>';
	 yyy = Yoffset;
	 	 
	 document.getElementById("dek").innerHTML = content;
	 skn.display = 'block';
}

function kill() {
	yyy = -1000;
	skn.display = 'none';
}

