var mouseLeft=0;
var mouseTop=0
function get_mouse(e) 
{
	mouseLeft = event.x+document.body.scrollLeft; 
	mouseTop = event.y+document.body.scrollTop;
}
document.onmousemove = get_mouse; 

function escrevePopup() {
	if (!(document.all.detPopup)) {
		var sText='';
		sText="<DIV ID='detPopup' onmouseout='escondePopup()' onmouseover='mostraPopup()' STYLE='position:absolute; top:100; left:100; height:150; width:150 z-index:600;display:none'>";
		sText+="<DIV ID='detPopupShadow' STYLE='position:absolute;top:4; left:4; height:150; width:150; display:none' class='BG_AzulClaro'></DIV>";
		sText+="<DIV ID='detPopupTopic' STYLE='position:absolute;top:0; left:0; height:150; width:150; display:none;' class='POPUP'></DIV>";
		sText+="</DIV>";
		if (document.body)
			document.body.insertAdjacentHTML('beforeEnd', sText)
	}
}


function mostraPopup (){
	document.all.detPopup.style.display='';
	document.all.detPopupShadow.style.display='';
	document.all.detPopupTopic.style.display='';
	document.all.detPopupShadow.style.width=document.all.detPopupTopic.scrollWidth;
	document.all.detPopupShadow.style.height=document.all.detPopupTopic.scrollHeight;
//	document.all.detPopupTopicHTML.style.display='';
}
function escondePopup (){
if (document.all.detPopup) {
	document.all.detPopup.style.display='none';
	document.all.detPopupShadow.style.display='none';
	document.all.detPopupTopic.style.display='none';
	}
//	document.all.detPopupTopicHTML.style.display='none';
}

function abrePopup(descricao,width,height) {

if (width==null) width=300;
if (height==null) height=100;
escrevePopup();
document.all.detPopupTopic.innerHTML=descricao;
document.all.detPopup.style.left=mouseLeft - width/2;
document.all.detPopup.style.top=mouseTop - height/2;
document.all.detPopup.style.width=width;
document.all.detPopup.style.height=height;
document.all.detPopupShadow.style.width=width+20;
document.all.detPopupShadow.style.height=height+20;
document.all.detPopupTopic.style.width=width;
document.all.detPopupTopic.style.height=height;
//document.all.detPopupTopicHTML.style.width=width;
//document.all.detPopupTopicHTML.style.height=height;
mostraPopup();
}

function abrePopupLado(descricao,width,height) {

if (width==null) width=300;
if (height==null) height=100;
escrevePopup();
//alert(mouseLeft + "-" + document.body.offsetWidth);
document.all.detPopupTopic.innerHTML=descricao;
//if (mouseLeft+100+width>document.body.offsetWidth) 
//	document.all.detPopup.style.left=mouseLeft-100 - 10;
//else
	document.all.detPopup.style.left=mouseLeft+10;

document.all.detPopup.style.top=mouseTop - height/2;
document.all.detPopup.style.width=width;
document.all.detPopup.style.height=height;
document.all.detPopupShadow.style.width=width;
document.all.detPopupShadow.style.height=height;
document.all.detPopupTopic.style.width=width;
document.all.detPopupTopic.style.height=height;
//document.all.detPopupTopicHTML.style.width=width;
//document.all.detPopupTopicHTML.style.height=height;
mostraPopup();
}

function abrePopupLado2(descricao,width,height) {

if (width==null) width=300;
if (height==null) height=100;
escrevePopup();
//alert(mouseLeft + "-" + document.body.offsetWidth);
document.all.detPopupTopic.innerHTML=descricao;
if (mouseLeft+40+width>document.body.offsetWidth) 
	document.all.detPopup.style.left=mouseLeft- width - 40;
else
	document.all.detPopup.style.left=mouseLeft+20;

document.all.detPopup.style.top=mouseTop - height/2;
document.all.detPopup.style.width=width;
document.all.detPopup.style.height=height;
document.all.detPopupShadow.style.width=width;
document.all.detPopupShadow.style.height=height;
document.all.detPopupTopic.style.width=width;
document.all.detPopupTopic.style.height=height;
//document.all.detPopupTopicHTML.style.width=width;
//document.all.detPopupTopicHTML.style.height=height;
mostraPopup();
}