


function Help(msg){
	if (IE){
		document.all["hlpBox"].style.left = x - 5;
		document.all["hlpBox"].style.top = y ;
		document.all["hlpBox"].style.display = "block";
		document.all["hlpBoxContent"].innerHTML = msg;
	}
	if (NS) {
		document.layers("hlpBox").style.left = x;
		document.layers("hlpBox").style.top = y;
		document.layers("hlpBox").style.display = "block";
		document.layers("hlpBoxContent").innerHTML = msg;
	}
	if (FF){
		document.getElementById("hlpBox").style.left = x + 'px';
		document.getElementById("hlpBox").style.top = y + 'px';
		document.getElementById("hlpBox").style.display = "block";
		document.getElementById("hlpBoxContent").innerHTML = msg;
	}
	//alert(x + " " + y);
}

document.write('<style type="text/css">');
document.write('.postit {position:absolute; display:none; background:#FFFF99; border:1px solid #069; left:30; top:30; width:150px; z-index:10;}');
document.write('.hlpButton {vertical-align:middle; border:0px;}');
document.write('.hlpContent {font-family:Verdana; font-size:10px; text-decoration:none;}');
document.write('.keyWord {text-decoration:underline; font-weight:bold; cursor:url; }');
document.write('</style>');
document.write('<div id="hlpBox" class="postit smlVerdana">');
document.write('<div align="left" style="position:absolute; cellpadding:3px; left:0px; top:0px; background:#FCEC00; width:100%; height:14px;"><span style="font-size:10px; color:#069; font-weight:bold; float:left; padding-left:3px;">Quick Help</span><img src="/graphics/icons/btnClose.gif" border="0" style="vertical-align:middle; cursor:pointer; float:right;" onclick=hideDiv("hlpBox")></div>');
document.write('<div id="hlpBoxContent" style="margin:5px;" class="hlpContent" align="left"><br>Help Content Here</div>');
document.write('</div>');


