function populateHelp($id) {
      $.ajax({
					url: basepath+"/admin/help/populate",
					type: "POST",
					data: ({id:$id}),
					success: function(ret){
						$('#drophelp').show('slide');
            $('#drophelpcontent').html(ret);
					}
				})//End ajax call
    }

function chkObject(theVal) {

    if (document.getElementById(theVal) != null)
    {
        return true;
    }
    else
    {
       return false;
    }
}

