function showMessage(message)
{   
    document.getElementById("popupWindow").innerHTML = message;
	
    //popupWindow.moveTo(mouseX - popupWindow.width + 150, mouseY + 15);
	popupWindow.moveTo((screen.width/2) - 260, mouseY + 15);
    popupWindow.show(true);
}



function hideMessage()
{
    popupWindow.show(false);           
}



// create windows

var winHeight = 350;
var winWidth = 500;
var strMessage = "";

strMessage = "<table cellpadding='3px' style='font-family:verdana, arial; font-size: 11px; text-align:left; background:#7c7c7c; border-style: solid; border-width:1px; border-color:#000000;'><tr><td id='popupWindow'>&nbsp;</td></tr></table>";

var popupWindow = new QWindow(null, "popupWindow", 1, 1, winWidth, winHeight, strMessage, false);
popupWindow.setEffects(popupWindow.effects ^ QWndCtrl.SHADOW);
popupWindow.setEffects(popupWindow.effects | QWndCtrl.FADEIN | QWndCtrl.FADEOUT);
popupWindow.opacity = 100;

