	function clsMessagePanel(parentID,moreTop,moreLeft,tema){ 
		this.Extends(window.Lib.LayCreator());
		var ps=window.Lib.getParentPosition(parentID);
		this.isPopup=true;
		var str="";
		if(tema=="tuition-details"){
			str+="PSG will reimburse up to $200 on any course completed at <br>";
			str+="The Boston Center for Adult Education. To be eligible you <br>";
			str+="must have worked at least 300 hours for PSG within the ten <br>";
			str+="week period preceding the course and be a PSG employee at the <br>";
			str+="time you complete the course. There is a limit of one course <br>";
			str+="reimbursement per twelve month period. To process your reimbursement, <br>";
			str+="we will need a receipt showing the class name, dates and cost and <br>";
			str+="verification that you have completed the course.";		
		}
		this.create(html(str),'text',ps.top+moreTop,ps.left+moreLeft);
		this.show();	
//------------------------------------------------------------------------------------------
		function html(str){
		 var c=window.Lib.colHTML();
		 var s='';
		 with(c){
			s+="<table cellpadding='0' cellspacing='0' class='oB1ORA' >";
			s+="<tr bgcolor='#c0c0c0'><td width='20' height='10'></td>"
			s+="	<td></td>"
			s+="<td width='20'></td></tr>";			
			s+="<tr bgcolor='#c0c0c0'><td width='20'></td>";
			s+="	<td class='c-b10' bground='red'>"+ str +"</td>";
			s+="<td width='20'></td></tr>";
			s+="<tr bgcolor='#c0c0c0'><td width='20'></td>";
			s+="	<td align='right'><a class='l0-blc' href='#'>Close</a></td>";
			s+="<td width='20'></td></tr>";
			s+="<tr bgcolor='#c0c0c0'><td width='20' height='10'></td>";
			s+="	<td></td>";
			s+="<td width='20'></td></tr>";
			s+="</table>";		
		 }
			var col=new Array();
			col['html']=s;
			col['controls']=c.controls;
			return col;
		}		
		
	}//-- end class
