// JavaScript Document

function help_text(pag)
{
	$.ajax({
  		type: "POST",
   		url: HTTP_ADDRESS+"getcontent.php",
   		data: "name="+pag,
  		cache: false,
  		success: function(html){
    		//$("#results").append(html);
			content='<div align="right">';
			content+='		<div style="width:25px; height:25px; cursor:pointer;" onclick="hideddrivetip()">&nbsp;</div>';
			content+='</div>';
			content+=html;
			ddrivetip(content);
  		}
	});	
}

