<!--
//  ###################
//  #    INTERFACE    #
//  ###################
//  
//  setHelp(txt)

//  ###################

document.writeln('<DIV id=help name=help class=help ' );
document.writeln('style="Position:absolute;z-index:5;');
document.writeln('left:300;top:510;width:380;height:20; visibility: visible; overflow: visible"');
document.writeln('></DIV>');

function setHelp(txt){
	help.innerText = txt; 
}

function setarPosicaoHelp(x,y,w,h){
	if (x.length > 0){help.runtimeStyle.left = x;}
	if (y.length > 0){help.runtimeStyle.top = y;}
	if (w.length > 0){help.runtimeStyle.width = w;}
	if (h.length > 0){help.runtimeStyle.height = h;}
}

function setarBackGroundHelp(color){
	help.runtimeStyle.backgroundColor = color
}

//-->
